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