#include using namespace std; int main() { double v; int t; cin >> v >> t; v *= 10000.0; int tmp = v + 1e-9; cout << (tmp * t) / 10000 << endl; return 0; }