#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int64_t A, B; cin >> A >> B; if (A * B > 0 || A == -B) { cout << -1 << '\n'; } else { int64_t N = B; int res = 1; set st; st.insert(N); while (N != 0) { N = N * A + B; if (st.find(N) != st.end()) { cout << -1 << '\n'; return 0; } st.insert(N); res++; } cout << res << '\n'; } return 0; }