#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int K,S; int ans; cin >> K>>S; cout << (int)((S * 100.0) / (100 - K)) << endl; getchar(); }