풀이 try catch문으로 입력 컨트롤
score=[] while 1: try: s=0 n,m=map(int,input().split(' ')) s=n+m score.append(s) except: break for i in score: print(i)