WWOJ

1014: 判断素数

Time Limit:  1 Sec    Memory Limit:   128 MB
Submission:139     AC:59     Score:100.00


Description

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

Input

见sample

Output

见sample

Samples

input:
4 1 2 9 17
output:
NO YES NO YES

Source