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