# 코딩 문제 관련/파이썬
백준 10952번(python)
Hwiyong Jo
2019. 6. 27. 10:10
while(True):
A, B = list(map(int, input().split()))
if(A == 0 and B == 0):
break
else:
print(A + B)