Help me in solving SYNJ6V2 problem

My issue

What exactly the output should be?

My code

class CodeChef
{
	public static void main (String[] args)
	{
	    // area - length * breadth 
		System.out.println("area of the rectangle is"+ (11*13));
		
		//perimeter - 2(length + breadth)
		System.out.print("perimeter of the rectangle is"+ (2*(11+13)));
	}
}

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

@rutujamane693
U don’t need to print the extra statement .
just do it simply like this .

class CodeChef
{
	public static void main (String[] args)
	{
	    // area - length * breadth 
		System.out.println(11 * 13);
		
		//perimeter - 2(length + breadth)
		System.out.print(2 * (11 + 13));
	}
}