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