#include<stdio.h>
int main()
{
    float l;
    float b;
    scanf("%f %f",&l,&b);
    area = l*b;
    printf("%.2f",area);
    return 0;
}