5 lines
82 B
Python
5 lines
82 B
Python
n=int(input())
|
|
|
|
for _ in range(n):
|
|
a,b=map(int,input().split())
|
|
print(a+b) |