Help me in solving SYNJ4V2 problem

My issue

My code

class CodeChef
{
	public static void main (String[] args)
	{
		// update your code here
       System.out.println(3+4);System.out.println(2+1);
	}
}

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

println takes the pointer to the next line in output. The solution required them to be in the same line. Below is corrected code
class CodeChef
{
public static void main (String[] args)
{
// update your code here
System.out.print(3+4);System.out.println(2+1);
}
}