#include<stdio.h>
int main(){
float length,width,area;
scanf("%f %f %f",&length,&width) 
float area = length*width;
printf("area of rectangle %f",area);