본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]10953번 A+B - 6

by 현장 2021. 5. 2.

-코드

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