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