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