
import java.util.Scanner;

public class IsPrime1
{
   public static void main(String[] args) 
   {
       int x = 8;

       if ( x == 1 )
       {
           System.out.println("Not prime");
       }
       else if ( x == 2 )
       {
           System.out.println("Prime");
       }
       else if ( x == 3 )
       {
           System.out.println("Prime");
       }
       else if ( x == 4 )
       { 
           System.out.println("Not prime");
       }
       else if ( x == 5 )
       {
           System.out.println("Prime");
       }
   }
} 
