본문 바로가기

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

#194 백준 파이썬 [10953] A+B - 6

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

 

 

#Solution

T = int(input())

for _ in range(T):
    A, B = map(int, input().split(','))
    print(A+B)