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