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