// editor5
#include<stdio.h>
int main()
{
    floata,b,m;
    scanf("%f%f",&a,&b);
    m=a*b;
    printf("%.2f",m);
    return 0;
}