#include<stdio.h>
int main()
{
    float l;
    float w;
    scanf("%f",&l);
    scanf("%f",&w);
    printf("%2f\n",l*w);
    retun 0;
}