Help me in solving VADJ2V2 problem

My issue

solution is not visible…

My code

class Codechef
{
	public static void main (String[] args)
	{
       Codechef Number =;  //Update the blanks with the value assigned to Number
        System.out.print(19); //Output the variable to the console
	}
}

Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone

@anshuman712
u have to do it like this.

class Codechef
{
	public static void main (String[] args)
	{
        int Number = 19;  //Update the blanks with the value assigned to Number
        System.out.print(Number); //Output the variable to the console
	}
}