#include using namespace std; using ll = long long; vector prime; bool is_prime(ll N){ if (N == 0 || N == 1) return false; for (ll i=2; i*i<=N; i++){ if (N % i == 0) return false; } return true; } int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll T, A, N; cin >> T; while(T){ T--; cin >> A >> N; cout << (is_prime(N) ? 1 : -1) << '\n'; } return 0; }