백준 알고리즘/python

[ 2742 ] 기찍 N

power-girl0-0 2021. 2. 28. 15:31
728x90

n = int(input())
for i in range(n,0,-1):
    print(i)
728x90