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