#include using namespace std; struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; #define all(c) (c).begin(), (c).end() #define rall(c) (c).rbegin(), (c).rend() #define vv(type, c, m, n, i) vector> c(m, vector(n, i)) #define rep(i,a,n) for(int i=(a), i##_len=(n); ii##_len; --i) #define each(x,y) for(auto &(x):(y)) #define var(type, ...)type __VA_ARGS__;Scan(__VA_ARGS__); template void Scan(T& t) { std::cin >> t; } templatevoid Scan(First& first, Rest&...rest) { cin >> first; Scan(rest...); } #define vec(type, c, n) vector c(n);for(auto& i:c) cin>>i; #define len(x) ((int)(x).size()) #define mp make_pair #define eb emplace_back #define em emplace #define pb pop_back #define fi first #define se second #define get(a, i) get(a) typedef long long ll; typedef long double ld; typedef vector vi; typedef vector vd; typedef vector vll; typedef vector vs; typedef vector vb; typedef pair pii; #define mini min_element #define maxi max_element #define sum(a, b) accumulate(a, b) #define chmax(a,b) if(ab)a=b #define ce(x, y) (x + y - 1) / y template inline void print(T t){cout << t << "\n";} template inline void print(H h, T... t){cout << h << " ";print(t...);} int Round(double d) { return int(d + 0.5); } int solve() { var(int, A, B); if (A == 0 || B == 0) return 1; int ans = 10000; int Round_A, Round_B; double ab; rep(a, 0, 101) { rep(b, 0, 101) { ab = a + b; if (ab == 0.0) continue; Round_A = Round(100 * a / ab); Round_B = Round(100 * b / ab); if (Round_A == 0) Round_A = 1; if (Round_B == 0) Round_B = 1; if (Round_A == A && Round_B == B) { chmin(ans, a + b); } } } return ans; } int main() { print(solve()); return 0; }