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