Pangaea_T 2020. 1. 6. 17:50

 

Python

import sys

TF = True
while(TF) :
    a,b = map(int,sys.stdin.readline().split())
    if(a==0 and b==0) :
        TF = False
    else :
        print(a+b)

 

 

 

===