#include<iostream>
using namespace std;
int main()
{
    float l,w;
    double r;
    r=l*w;
    cout<<fixed<<setprecision(2)<<r;
}