#include "bits/stdc++.h" using namespace std; int main() { int D,P; cin >> D >> P; double add = D/100.0 * P; cout << D+(int)add << endl; }