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