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