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