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