#include #include int main() { double price, tax; std::cin >> price >> tax; tax /= 100;//百分率に変換 std::cout << static_cast(price + price * tax) << std::endl; return 0; }