https://www.acmicpc.net/problem/10950
코드는 구구단과 비슷하다
t = int(input()) for i in range(t): a,b = map(int, input().split()) print(a+b)