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