백준 알고리즘/python

[ 2741 ] N 찍기

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

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