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