You are given an array A containing 2⋅N inetegers. You want to obtain exactly N even integers in the array. Is it possible to achieve the goal using the following operation any number of times(possibly zero) ?
Input format
Output format
For each test case, print "YES" (without quotes) if it is possible to achieve the goal and "NO" (without quotes) otherwise.
Constraints
1≤T≤1041≤N≤1051≤Ai≤109
The sum of N over all test cases does not exceed 2⋅105.
In the first test case, it is impossible to have two even integers in the given array.
In the second test case, apply the operation on indices i=1,j=2 making A=[4,10,1,3] which contains two even integers,