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