#include<iostream> using namespace std; int main(){ float a; cin>>a; float b; cin>>b; float c; c=a*b; cout<<c; return 0; }