백준 10950번 A+B - 3 파이썬
2022.03.07 16:17
백준 10950번 A+B - 3 파이썬 코드이다.
t = int(input())
[print(sum(list(map(int, input().split())))) for _ in range(t)]