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