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