#include using namespace std; int main() { int d, p; cin >> d >> p; float _p = p / 100.0; cout << d + (int)(_p * d); return 0; }