백준 2741번 N 찍기 파이썬
2022.03.07 15:58
백준 2741번 N 찍기 파이썬 코드이다.
n = int(input())
[print(i + 1) for i in range(n)]