a = int()
b = int()

while a != 0 and b != 0 :
    a, b = map(intinput().split())
    print(a+b)


문제가 있나요,,?