Help me in solving VADJ4V2 problem

My issue

My code

class Codechef
{
	public static void main (String[] args)
	{
        int length = 45;
        int width = 76;
        int area = 3420;
        //System.out.print(45 * 76);
        System.out.print("length + width + area");
	}
}

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

@ammu13
area of rect is length * breadth and u should just print the area in the print statement
here is the correct code

hope this helps!!

class Codechef
{
public static void main (String[] args)
{
int length = 45;
int width = 76;
int area = length * width;
System.out.println("The Area of the given rectangle is " + area);
}
}