Python/백준
백준 - 7891 Can you add this?
sophia02
2022. 10. 11. 17:38
t = int(input())
for i in range(t):
a, b = map(int, input().split())
print(a+b)