#include using ll = long long; using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll d,p; cin >> d >> p; cout << d*(100+p)/100 << "\n"; return 0; }