본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#15 백준 파이썬 [2741] N 찍기

#15 백준[2741] N 찍기

https://www.acmicpc.net/problem/2741



#14 백준[2741] Solution

a=input()
b=int(a)
for i in range(b):
print(i+1)