#include using namespace std; #define int long long #define rep(i,l,r) for(int i=(int)(l);i<(int)(r);i++) #define all(x) (x).begin(),(x).end() #define sz(x) ((int)x.size()) templatebool chmax(T &a,T b){if(abool chmin(T &a,T b){if(a>b){a=b;return 1;}return 0;} typedef pair pii; typedef vector vi; typedef vector vvi; const int inf = 1LL<<60; const int mod = 1e9 + 7; const double eps = 1e-9; /*{ }*/ signed main(){ int a, b; cin >> a >> b; int ans = inf; rep(i, 0, 1000) rep(j, 0, 1000){ if(round(100.0*i/(i+j)) == a and round(100.0*j/(i+j)) == b){ chmin(ans, i+j); } } cout << ans << endl; return 0; }