#include <iostream>

using namespace std;

int main() {
	int D, tax;
	cin >> D >> tax;

	cout << D + (int)(D* tax / 100.0) << endl;
	return 0;
}