PON - Prime or Not
题意翻译
## 题目描述
给你一个正整数,你需要回答一个问题:“这是一个素数吗?”
## 输入格式
第一行一个整数 $t$ 代表数据的组数,接下来 $t$ 行,每行一个整数 $n$($1 \leq t\le 500,2\le n\le 2^{63}-1$)。
## 输出格式
对于每一组数据,若它是素数,则输出 `YES`,若不是素数,则输出 `NO`。
题目描述
Given the number, you are to answer the question: "Is it prime?"
**Solutions to this problem can be submitted in C, C++, Pascal, Perl, Python, Ruby, Lisp, Hask, Ocaml, Prolog, Whitespace, Brainf\*\*k and Intercal only.**
输入输出格式
输入格式
_t_ – the number of test cases, then _t_ test cases follows. \[t <= 500\]
Each line contains one integer: _N_ \[2 <= _N_ <= 2^63-1\]
输出格式
For each test case output string "YES" if given number is prime and "NO" otherwise.
输入输出样例
输入样例 #1
5
2
3
4
5
6
输出样例 #1
YES
YES
NO
YES
NO