#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define rep(i, a, b) for (int i = (a); i < (b); ++i) #define all(x) (x).begin(), (x).end() #define MOD 1000000007 #define int long long using ll = long long; using namespace std; const int INF = 1LL << 50; using P = pair; template bool chmin(T &a, T b) { if (a > b) { a = b; return true; } else { return false; } } template bool chmax(T &a, T b) { if (a < b) { a = b; return true; } else { return false; } } struct Setup { Setup() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); } } SETUP; signed main() { int a, b; cin >> a >> b; int ab = a + b; for (int c = 1; c * c <= ab; c++) { if (a == c || b == c) continue; bool ok = true; if (ab % c != 0) ok = false; if ((a + c) % b != 0) ok = false; if ((b + c) % a != 0) ok = false; if (ok) { cout << c << endl; return 0; } } puts("-1"); }