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