class Area{public static void main(String[] args) { int l = 5, b = 15, area; area = l*b;
System.out.println("Area of rectangle of these numbers: "+area); }}
View all Questions