#include using namespace std; int main() { int d, p; int ans = 0; cin >> d >> p; ans = int(d * (100 + p) / 100.0); cout << ans << "\n"; return 0; }