#include using namespace std; int main() { double v,s; int t; cin >> v >> t; s = (v * 10000 * t)/10000; // 情報落ち対策 cout << (int)(s+0.5) << endl; return 0; }