#include int main() { int K; int S; int T; std::cin >> K >> S; T = S * 100 / (100 - K); std::cout << T << std::endl; return 0; }