#include using namespace std; int main() { int d; double p; cin >> d >> p; cout << d + int(p * d * 0.01) << endl; }