#include using namespace std; int main() { int D,P; cin >> D >> P; cout << D * (1 + P / 100) << endl; return 0; }