while(True):
A, B = list(map(int, input().split()))
if(A == 0 and B == 0):
break
else:
print(A + B)
'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글
백준 2562번(python) (0) | 2019.06.27 |
---|---|
백준 10951번(python) (0) | 2019.06.27 |
백준 11022번(python) (0) | 2019.06.27 |
백준 10950번(python) (0) | 2019.06.27 |
백준 10950번(python) (1) | 2019.06.27 |