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