백준 알고리즘/python

[ 10952 ] A+B - 5

power-girl0-0 2021. 2. 28. 17:01
728x90

while(True):
    a,b = map(int,input().split())
    if(a==0 and b==0):
        break
    else:
        print(a+b)
728x90