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