#include using namespace std; int main() { int k, s; cin >> k >> s; int t = s / ((100 - k) / 100.0); cout << t << endl; return 0; }