i tried using the scanner code but the program is not showing any result.
here is the code that i used :
import java.util.Scanner;
public class evenodd {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int n = scn.nextInt() ;
System.out.println(n);
}
}