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