/** * author: boutarou * created: 02.08.2020 11:38:24 **/ #include using namespace std; #define rep(i,n) for(int i = 0; i < int(n); i++) using ll = long long; using P = pair; const double EPS = 1e-10; int main() { double d, p; cin >> d >> p; double ans = d * (1.0 + (p / 100)) + EPS; cout << floor(ans) << endl; return 0; }