Odd positive int

Anonymous
plain_text
04/19/2023 2:50 PM
112 B
13
Indexable
n=int(input("n="))
for i in range (n-1,1,-1):
    if i % 2 != 0:
        print(i)
Editor is loading...