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