#include<stdio.h>
#include<conio.h>
void main() {
int l,b,c;
printf("Pls enter the length of a rectangle:");
scanf("%d",&l);
printf("Pls enter the breath of a rectangle:");
scanf("%d",&b);
c = l*b;
printf("Area of Rectangle: %d",c);
getch();
}