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