문제 풀이/Baekjoon Online Judge
[python3] 2741번 N 찍기
[잉간]
2018. 3. 23. 22:36
N = int(input()) for repeat in range(1, N + 1): print(repeat)