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