https://www.acmicpc.net/problem/15552
풀이
import sys
num = int(input())
for i in range(num):
a, b = map(int, sys.stdin.readline().split())
print(a+b)
'Python > Baekjoon' 카테고리의 다른 글
백준 11022번 : A+B - 8 (0) | 2022.10.06 |
---|---|
백준 11021번 : A+B - 7 (0) | 2022.10.06 |
백준 25304번 : 영수증 (0) | 2022.10.06 |
백준 8393번 : 합 (0) | 2022.10.06 |
백준 10950번 : A+B - 3 (0) | 2022.10.06 |