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