I know the meaning of this error after reading a lot of solution for it.
I wrote a simple code in Codechef IDE which is to take a number as input and simply print it.
my code is-
import java.util.*;
class abc
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
System.out.println(n);}}
I am getting NZEC error even in this simplest code.