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