#include using namespace std; using ll=long long; long double d,p; void solve() { cin>>d>>p; cout<<(ll)(d+d*(1.0*p)/100)<<'\n'; } int main() { ios::sync_with_stdio(false);cin.tie(NULL); int tc=1; // cin>>tc; while(tc--)solve(); return 0; }