Odd positive int

 avatar
unknown
plain_text
2 years ago
84 B
5
Indexable
n=int(input("n="))
for i in range (n-1,1,-1):
    if i % 2 != 0:
        print(i)
Editor is loading...