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