#include <stdio.h>
int main()
{
    float length,width,area;
    //read length & width from user input
    scanf("%f",&length);
    scanf("%f",&width);
    
    //calculate area of rectangle
    area= length * width;
    //print the area rounded to two decimal place
    printf("%.2f\n",area)
    
    return 0;
}