#include <iostream>
int main() {
	int D, P;
	std::cin >> D >> P;
	int Money = D + (D *(0.01*P));
	std::cout << Money << std::endl;
	return 0;
}