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