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