#include using namespace std; signed main(){ int N, P; cin >> N >> P; cout << ( int ) ( N * ( ( 100.0 + P ) / 100 ) + 1e-8 ) << endl; return 0; }