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