[Python] BOJ 10953번. A+B - 6 작성일 2020-07-20 | In Algorithm | 10953번. A+B - 6 문제 링크 https://www.acmicpc.net/problem/10953 풀이 코드 123456# 10953번. A+B - 6 for _ in range(int(input())): a,b=map(int,input().split(',')) print(a+b) 비고