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