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