Files
CodeTest/baekjoon/기찍_N/solution_5276455.py
2024-08-29 16:24:24 +09:00

5 lines
94 B
Python

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