https://www.acmicpc.net/problem/10950
풀이
T = int(input())
for _ in range(T):
A, B = map(int, input().split())
print(A+B)
'Python > Baekjoon' 카테고리의 다른 글
백준 25304번 : 영수증 (0) | 2022.10.06 |
---|---|
백준 8393번 : 합 (0) | 2022.10.06 |
백준 2739번 : 구구단 (0) | 2022.10.06 |
백준 2480번 : 주사위 세개 (0) | 2022.10.06 |
백준 2525번 : 오븐 시계 (0) | 2022.10.06 |