본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#58 백준 파이썬 [10950] A + B - 3

https://www.acmicpc.net/problem/10950  

 

 

#Solution

cases = int(input())

for i in range(cases):
    a, b = map(int, input().split())
    print(a+b)