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