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