Chika likes numbers which can be written as the sum of two primes! Given numbers, determine which ones can be written as the sum of two primes.
Constraints
Input Specification
The first line contains a single positive integer .
Each of the next lines contains a single positive integer, .
Output Specification
Output lines. On the th line, output YES
if the th integer can
be expressed as the sum of two primes. Otherwise, output NO
.
Sample Input
1
4
Sample Output
YES
Comments