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