1772 A_A_B 1 2 3 4 5 6 7 8 9def solve(): a, b = input().split("+") res = int(a) + int(b) print(res) for _ in range(int(input())): solve()