You are given three integers aa, bb, and cc. Determine if one of them is the sum of the other two.
The first line contains a single integer tt (1≤t≤92611≤t≤9261) — the number of test cases.
The desc
For each test case, output "YES" if one of the numbers is the sum of the other two, and "NO" otherwise.
7
1 4 3
2 5 8
9 11 20
0 0 0
20 20 20
4 12 3
15 7 8
YES
NO
YES
YES
NO
NO
YES