Problem2444--CF1742A - sum

2444: CF1742A - sum

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

You are given three integers aabb, and cc. Determine if one of them is the sum of the other two.

Input

The first line contains a single integer tt (1≤t≤92611≤t≤9261) — the number of test cases.

The description of each test case consists of three integers aabbcc (0≤a,b,c≤200≤a,b,c≤20).

Output

For each test case, output "YES" if one of the numbers is the sum of the other two, and "NO" otherwise.

Sample Input Copy

7
1 4 3
2 5 8
9 11 20
0 0 0
20 20 20
4 12 3
15 7 8

Sample Output Copy

YES
NO
YES
YES
NO
NO
YES

Source/Category