#include int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); uint_fast32_t K, S; std::cin >> K >> S; std::cout << S * 100 / (100 - K) << '\n'; return 0; }