mirror of
https://github.com/tiennm99/claoj.git
synced 2026-07-12 03:05:49 +00:00
7 lines
109 B
Python
7 lines
109 B
Python
n = int(input())
|
|
|
|
for _ in range(n):
|
|
a, b = map(int, input().split())
|
|
total = a + b
|
|
print(total)
|