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