#include<iostream> using namespace std; int main(){ double C,F,D; cin>>C>>F; D=C*F; cout<<D<<endl; return 0; }