본문 바로가기
Python/CodeUp

1072 - 정수 입력받아 계속 출력하기

by GLOWWW 2021. 2. 19.
n = input()
nums = input().split()

for num in nums:
    print(num)

댓글