import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
while(n>2)
{
if(n%2==0)
{
System.out.println("Prime");
}
else
System.out.println("Not Prime");
}
}
}
error:timelimit exceeded(wall time):aborting command
command terminated with signal 15 what i have to do sir to run testcases