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