Python/CodeUp
1077 - 정수 1개 입력받아 그 수까지 출력하기
GLOWWW
2021. 2. 19. 15:53
num = input()
num = int(num)
for n in range(num+1):
print(n)