Primes 3

View as PDF

Submit solution

Points: 15 (partial)
Time limit: 1.0s
Memory limit: 16M

Author:
Problem type
Allowed languages
ALGOL 68, Assembly, Brain****, C, C++, COBOL, Forth, Fortran, Lua, Text, Turing

Given T (1T100) positive integers, one per line, determine whether each one is prime. The integers will be no greater than 2631.

The first line of input will be the integer T. The next T lines each contain a number to be tested.

For each of the T integers, you should output on a separate line PRIME if the corresponding integer is prime, or NOT if it is not prime.

Sample Input

Copy
5
1
2
6
11
1000000000000000000

Sample Output

Copy
NOT
PRIME
NOT
PRIME
NOT

Comments

There are no comments at the moment.