https://www.acmicpc.net/problem/10950
#Solution
cases = int(input())
for i in range(cases):
a, b = map(int, input().split())
print(a+b)
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#60 백준 파이썬 [11021] A + B - 7 (0) | 2019.07.03 |
---|---|
#59 백준 파이썬 [15552] 빠른 A+B (0) | 2019.07.03 |
#57 백준 파이썬 [2884] 알람시계 (0) | 2019.07.03 |
#56 백준 파이썬 [1330] 두 수 비교하기 (0) | 2019.07.03 |
#55 백준 파이썬 [2588] 곱셈 (0) | 2019.07.03 |