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