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