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