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