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