odd positive int

Anonymous
plain_text
04/20/2023 7:27 AM
116 B
12
Indexable
n=int(input("n="))
for i in range (n-1,0,-1):
    if i % 2 != 0:
        print(i)
Editor is loading...