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