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