You are given three integers aa, bb, and cc. Determine if one of them is the sum of the other two.
Sample
Input
7
1 4 3
2 5 8
9 11 20
0 0 0
20 20 20
4 12 3
15 7 8
Output
YES
NO
YES
YES
NO
NO
YES
Note
In the first test case, 1 + 3 = 4.
In the second test case, none of the numbers is the sum of the other two.
In the third test case, 9 + 11 = 20.
(未完成)