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