#include using namespace std; int main() { int D, P; int answer; cin >> D >> P; answer = D + D * (P / 100.0); cout << answer << endl; return 0; }