Limits 1s, 512 MB

Professor Petr is very angry over some of his students now-a-days for not doing assignment. He wants to give them punishment. He will pick a number nn randomly and the punished student will have to write "I DID NOT DO THE ASSIGNMENT."\texttt{"I DID NOT DO THE ASSIGNMENT."} (without quotes) nn times in his writing script. But Professor Petr likes prime numbers a lot and if the random number is prime, then the student will not have to bear the punishment.

Input

There will be only one test case per input file. The input file will contain an integer number nn (1n10001 \le n \le 1000) denoting the number Professor Petr will pick.

Output

If the random number nn is prime just print NO PUNISHMENT\texttt{NO PUNISHMENT} and if the number is not prime then print "I DID NOT DO THE ASSIGNMENT."\texttt{"I DID NOT DO THE ASSIGNMENT."} (without quotes) nn times.

Samples

InputOutput
3
NO PUNISHMENT
InputOutput
4
I DID NOT DO THE ASSIGNMENT.
I DID NOT DO THE ASSIGNMENT.
I DID NOT DO THE ASSIGNMENT.
I DID NOT DO THE ASSIGNMENT.

Submit

Login to submit.

Contributors

Statistics

94% Solution Ratio
sayedgkmEarliest, Jul '17
TIGERFtFastest, 0.0s
SIR.24Lightest, 0 B
Nusab19Shortest, 79B
Toph uses cookies. By continuing you agree to our Cookie Policy.