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