Help me in solving SYNJ6V2 problem

My issue

My code

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

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

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));
}

}