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