python-algorithm

[백준] 7891

무적김두칠 2021. 3. 19. 14:45

1
2
3
for i in range(int(input())):
    a,b=map(int,input().split())
    print(a+b)
cs
반응형