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