#include <stdio.h>
int main(void)
float length, width;
scanf("%f", &length);
scanf("%f", &width);
print("%.2f", length * width);
return 0;
}