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