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