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