Help me in solving SYNJ4V2 problem

My issue

explain this code

My code

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

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

@akshatha60
Its a basic code of java to print the sum of 3+4 and 2+1 without any space .
Just understand the syntax .