#include using namespace std; typedef long long ll; typedef pair l_l; typedef pair i_i; template inline bool chmax(T &a, T b) { if(a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, T b) { if(a > b) { a = b; return true; } return false; } const long double EPS = 1e-10; const long long INF = 1e18; const long double PI = acos(-1.0L); //const ll mod = 1000000007; int A, B; int ans; bool f(int x) { for(int i = 0; i * A <= x; i++) { int rest = x - i * A; if(rest % B == 0) return false; } return true; } int main() { //cout.precision(10); cin.tie(0); ios::sync_with_stdio(false); cin >> A >> B; if(__gcd(A, B) != 1) { cout << -1 << endl; return 0; } for(int i = 1; i <= A * B; i++) { if(f(i)) ans++; } cout << ans << endl; return 0; }