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