Algorithm/noj.am
[Algorithm] 백준 10952 Python
SweetDev
2020. 12. 30. 12:26
import sys
while True:
a, b = map(int, sys.stdin.readline().split())
if a == 0 and b == 0:
break
else:
print(a + b)