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