#include <bits/stdc++.h> using namespace std; int main() { double a,b,sum=0; cin>>a>>b; cout<<setprecision(2)<<fixed<<a*b; }