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