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