Help me in solving SYNJ7V2 problem

My issue

class Codechef
{
public static void main (String[] args)
{
System.out.print((3 + 4) + --------+ (2 + 1));
}
}
what fill in blank space

My code

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

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

You have to print a space between both the answers, then only you can print both answers in a single line.
System.out.println((3+4)+" "+(2+1));

That’s it… Keep coding.