class AreaOfRectangle{ public static void main(String args[]) { int l= 5; System.out.println("The value of length: "+l); int b= 10; System.out.println("The value of Breadth: "+b); int area=l*b; System.out.println("Area of Rectangle is: " + area); } }