OneCompiler

Find the given number is Odd or Even ?

1671

import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
int n=s.nextInt();
if(n%2==0)
System.out.print("EVEN");
else
System.out.print("ODD");
}
}