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