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