본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 10950번 A+B - 3

by 현장 2021. 12. 26.

-코드

for _ in range(int(input())):
    a, b = map(int, input().split())
    print(a + b)