#include using namespace std; int main(int argc, char**argv) { double d, p; cin >> d >> p; cout << (long)(d + d * (p/100)) << endl; return 0; }