#include using namespace std; using ll = long long; #define FOR(i,a,b) for(ll (i)=a;(i)<(b);++(i)) #define RFOR(i,a,b) for(ll (i)=a;(i)>=(b);--(i)) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) RFOR(i,n,0) #define ALL(v) v.begin(), v.end() #define UNIQ(v) sort(ALL(v)); v.erase(unique(ALL(v)), v.end()) #define BIT(n) (1LL<<(n)) #define DEBUG(a) cout << #a << " = " << a << endl const ll inf = 1e15; const ll mod = 1e9+7; int dy[] = {0, 0, 1, -1}; int dx[] = {1, -1, 0, 0}; int A, B; int main() { cin >> A >> B; int result = -1; for (int i = 0; (i * A - B) < A + B; i++) { int C = (i * A - B); //cout << C << endl; if (C == A || C == B || C < 1) { continue; } //cout << C << endl; if ((A + C) % B == 0 && (B + C) % A == 0 && (A + B) % C == 0) { result = C; break; } } cout << result << endl; }