#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ int k,s; cin>>k>>s; double x=(double)s/(100-k)*100; int y=x/1; cout << y << endl; }