python-algorithm
codeforces 1351A - A+B (Trial Problem)
무적김두칠
2022. 6. 7. 11:06
1
2
3
4
5
|
import sys
for i in range(int(input())):
a,b=map(int,sys.stdin.readline().split())
print(a+b)
|
cs |
반응형