etc/Coding Test
[codeup] 83. 0 입력될 때까지 무한 출력하기
알 수 없는 사용자
2021. 12. 13. 00:53
728x90
n = 1
while n!=0 :
n = int(input())
if n!=0 :
print(n)