#include using namespace std; using ll = long long; template using vec = vector; #define BE(x) x.begin(), x.end() int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int d, p; cin >> d >> p; cout << d*(100+p)/100 << endl; }