728x90
1
2
3
4
5
6
7
8
9
|
import sys
n = int(input())
for i in range (0,n,1):
a,b = map(int,sys.stdin.readline().split())
a = int(a)
b = int(b)
print(a+b)
|
cs |
728x90
'Study > BAEKJOON' 카테고리의 다른 글
[BAEKJOON] 2742 : 기찍 N - python3 (0) | 2021.08.05 |
---|---|
[BAEKJOON] 2741 : N 찍기 - python3 (0) | 2021.08.05 |
[BAEKJOON] 8393 : 합 - python3 (0) | 2021.08.05 |
[BAEKJOON] 10950 : A+B - 3 - python3 (0) | 2021.08.05 |
[BAEKJOON] 2739 : 구구단 - python3 (0) | 2021.08.05 |