Recent Posts

[백준] 2741번 문제, N 찍기

less than 1 minute read

문제 여기를 눌러 문제를 확인하세요. 코드 1 2 3 4 N = int(input()) S = N+1 for i in range(1, S): print(i)