
If the given number is 6, The number 6 can be represented as 2 + 4, and both 2 and 4 are even numbers. Hence the answer is “YES”.
The first line of the input contains an integer, 'T,’ denoting the number of test cases.
The first line of each test case contains a single integer ‘N’, representing the given integer.
For each test case, print “YES” if ‘N’ can be represented as a sum of two even numbers. Otherwise, print “NO”.
Print the output of each test case in a separate line.
You do not need to print anything. It has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 10^9
Time limit: 1 sec
The intuition behind the approach is that the sum of two even numbers is always even.