class AreaOfRectangle {
public static void main(String[] args) {
String units="cm";
double length= 5.7, width= 4.8;
double areaOfRec= length*width;
System.out.println("The area of the rectangle with a length of "+length+units+" and width of "+width+units+ " has an area of " + areaOfRec+units+"^2");
}
}