#include int main() { int a, b, n; double vol; std::cin >> a >> b; vol = a * (100 + b) / 100; n = vol; std::cout << n << std::endl; return 0; }