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