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