Help me in solving SYNJ11V2 problem

My issue

My code

class Codechef
{
	public static void ___ (String[] args)
	{
		System.out.print( 12 + 7 );
	}
}

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

@rajuluavvari76
U have to fill the blanks like this

class Codechef
{
	public static void main (String[] args)
	{
		System.out.print(12+7);
	}
}
1 Like