Problem1035--素数判断

1035: 素数判断

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

输入一个正整数 repeat (0<repeat<10),做repeat 次下列运算:
输入一个正整数 m,如果它是素数,输出"YES",否则,输出"NO"(素数就是只能被1 和自身整除的正整数,1 不是素数,2 是素数)。

Input

见sample

Output

见sample

Sample Input Copy

4
1 2 9 17

Sample Output Copy

NO
YES
NO
YES

Source/Category