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