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