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