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