package kanika;
import java.io.*;
public class Kanika {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
// TODO code application logic here
System.out.print("enter the no");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int input = Integer.parseInt(br.readLine());
if(input % 2 == 0 )
{
System.out.println("the number is even");
}
else
System.out.println("the number is odd ");
}
}