#include using namespace std; int main(int argc, const char* argv[]) { int K, S; cin >> K >> S; cout << S * 100 / (100 - K) << endl; return 0; }