python-algorithm

[백준] 10951

무적김두칠 2020. 12. 28. 10:58

1
2
3
4
5
6
while True:
    try:
        a,b =map(int, input().split())
        print(a+b)
    except:
        break
cs
반응형