#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    float lenght;
    float width;
    cin>>lenght>>width;
    float area=lenght * width;
    cout<<fixe<<setprecision(2)<<area;
    return 0;
}