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