www.acmicpc.net/problem/10952

 

 

while 1:

    a,b=map(intinput().split())

    if (a==0 and b==0): break

    print(a+b)

+ Recent posts