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