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