2 1 2 3 4 5 6
6 15
n = int(input()) for _ in range(n): a, b, c = map(int, input().split()) print(a + b + c)