#include #include int main(int argc, char *argv[]) { int price = 0; int tax = 0; std::cin >> price; std::cin >> tax; double payment = std::floor((price * (100 + tax)) / 100); std::cout << static_cast(payment) << std::endl; return 0; }