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