https://www.acmicpc.net/problem/10951
종료 조건이 없는 문제..
while문으로 종료조건 없이 계속 반복시켜준다.
while True:
print(sum(map(int, input().split())))
while문으로 계속 반복해주고 try except를 활용해 종료시켜준다..
while True:
try:
print(sum(map(int, input().split())))
except:
break
파이썬은 종료조건 없는 문제는 try except break를 활용해 종료시킨다!