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