An array A of N integers is said to special if we can obtain the total sum of the array as K by the implementation of the following operation:
Note: You can only perform one operation per element of the array.
If it is possible to make the sum of the array A equal to K i.e Special Array, print YES else NO.
Input format
Output format
For each test case, print YES or NO depending on the result.
Constraints
For testcase 2 if we change the given array {1,2,3,4} to {-1,4,6,-4}
By applying transformation 1 to element 1 and 4 making them 1->-1 and 4->-4
Transformation 2 to element 2 and 3 making them 2->2+2 and 3->3+3
then the sum of all the elements will be 5.