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