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