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