Help me in solving SYNJ4V2 problem

My issue

My code

class CodeChef
{
	public static void main (String[] args)
	{
	    System.out.println("Output:3+4");
	    System.out.println("Output:2+1");
	}
}

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

You have to print the output, and not the question. Take a look at the following solution for help.

class CodeChef
{
public static void main (String[] args)
{
System.out.print(3 + 4);
System.out.print(2 + 1);
}
}

You dont need to write (“Output:3+4”)
only write ;
System.out.println(3+4);
System.out.println(2+1);