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