#include <iostream>

using namespace std;

int main() {
	int k, s, ans;
	cin >> k >> s;
	ans = (s * 100) / (100 - k);
	cout << ans << endl;
}