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