Search

67 백준_Python [10952] A+B -5

while(True): a,b = map(int,input().split()) if a==0 and b ==0: break print(a+b)
Python
복사