본문 바로가기
python-algorithm

codeforces 1351A - A+B (Trial Problem)

by 무적김두칠 2022. 6. 7.

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
반응형

댓글