#include void solve() { int d, p; std::cin >> d >> p; std::cout << d * (p + 100) / 100 << std::endl; } int main() { std::cin.tie(nullptr); std::cout.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }