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