지나가던 개발자

[Python] 백준 2741번(N 찍기) 문제 풀이 본문

PS/Python

[Python] 백준 2741번(N 찍기) 문제 풀이

KwonYongHyeon 2022. 1. 12. 11:36

 

for i in range(1, int(input())+1):
    print(i)

 

 1부터 N까지 출력하는 문제였다.

Comments