본문 바로가기
python-algorithm

[백준] 5717

by 무적김두칠 2020. 12. 24.

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
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 6322  (0) 2020.12.24
[백준] 6131  (0) 2020.12.24
[백준] 5612  (0) 2020.12.23
[백준] 5523  (0) 2020.12.23
[백준] 5361  (0) 2020.12.23

댓글