5 lines
94 B
Python
5 lines
94 B
Python
N = int(input())
|
|
str = ""
|
|
for i in range(N,0,-1) :
|
|
str = str + "{}\n".format(i)
|
|
print(str) |