각 테스트 케이스는 한 줄로 이루어져 있으며, 각 줄에 A와 B가 주어진다. (0 < A, B < 10)
출력: 각 테스트 케이스마다 A+B를 출력한다.
a =int(input())
result =[]for i inrange(a):
b, c =input().split(' ')
b =int(b)
c =int(c)if b >0and c <10:
result.append(b+c)for i inrange(len(result)):print(result[i])