while 문 _ 조건: True(1) try&except: 입력이 없을 때 멈추기 위해 사용 try: 입력이 있을 때 출력 except: 입력이 없을 때 실행
while 1: try : print(input()) except: break