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