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