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