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