#include using namespace std; int main(){ long long int d,p; cin >> d >> p; double ans = d * (1 + 0.01 * p); cout << (int)ans << endl; return 0; }