#include using namespace std; int main() { double a, b; cin >> a >> b; double k = a * b /100.0; cout << (int)k << endl; return 0; }