https://www.acmicpc.net/problem/10952
while True:
A,B=input().split()
if A and B == '0': break
else : print(int(A)+int(B))
while문은
while (조건) : 내용
의 형식으로 나타내어진다.
break를 사용하면 while문을 탈출하고
continue를 사용하면 밑의 내용을 무시하고 while문 첫 문장으로 이동한다.