python-algorithm

[백준] 5717

무적김두칠 2020. 12. 24. 23:14

1
2
3
4
5
import sys
while True:
    a,b=map(int, sys.stdin.readline().split())
    if a==0 and b==0: break
    elseprint(a+b)
cs
반응형