Help me in solving SYNJ4V2 problem

My issue

class CodeChef
{
public static void main(String args)
{
System.out.println(“3+4”,“2+1”);
}
}

My code

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

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

The statement asks you to print them together without space.

Corrected code:

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