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