#include int main() { int d, p; std::cin >> d >> p; std::cout << (100 * d + d * p) / 100 << std::endl; return 0; }