#include using namespace std; int main(){ float v; int t; int d; cin >> v; cin >> t; d = v * t; cout << d << endl; return 0; }