#include auto main() -> int { double D, P; std::cin >> D >> P; int price = static_cast(D * (1.0 + P/100.0)); std::cout << price << std::endl; }