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