#include using namespace std; #define int long long #define rep(i, n) for (int i = 0; i < (int) (n); i++) #define reps(i, n) for (int i = 1; i <= (int) (n); i++) #define all(x) (x).begin(), (x).end() #define uniq(x) (x).erase(unique(all(x)), (x).end()) #define bit(n) (1LL << (n)) #define cdiv(a, b) (((a) - 1) / (b) + 1) #define dump(x) cerr << #x " = " << (x) << endl using vint = vector; using vvint = vector; using pint = pair; using vpint = vector; template using priority_queue_rev = priority_queue, greater>; constexpr double PI = 3.1415926535897932384626433832795028; constexpr int DY[9] = {0, 1, 0, -1, 1, 1, -1, -1, 0}; constexpr int DX[9] = {1, 0, -1, 0, 1, -1, -1, 1, 0}; int gcd(int a, int b) { while (b) { swap(a %= b, b); } return a; } int lcm(int a, int b) { return a / gcd(a, b) * b; } int sgn(int x) { return (x > 0) - (x < 0); } template void fin(T mes) { cout << mes << endl; exit(0); } template bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template bool chmin(T &a, const U &b) { if (b < a) { a = b; return true; } return false; } template ostream &operator<<(ostream &os, const pair &rhs) { os << "(" << rhs.first << ", " << rhs.second << ")"; return os; } template ostream &operator<<(ostream &os, const vector &rhs) { os << "{"; for (auto itr = rhs.begin(); itr != rhs.end(); itr++) { os << *itr << (next(itr) != rhs.end() ? ", " : ""); } os << "}"; return os; } struct setup { static constexpr int PREC = 20; setup() { cout << fixed << setprecision(PREC); cerr << fixed << setprecision(PREC); }; } setup; bool is_prime(int x) { for (int i = 2; i * i <= x; i++) { if (x % i == 0) { return false; } } return true; } struct fast_io { static constexpr int size_in = 1 << 25, size_out = 1 << 25; char data_in[size_in], data_out[size_out], *p_in, *p_out, s[30]; fast_io() { fread(data_in, 1, size_in, stdin), p_in = data_in, p_out = data_out; } ~fast_io() { fwrite(data_out, 1, p_out - data_out, stdout); } void putchar(char x) { *p_out++ = x; } template void putint(T x) { if (x < 0) { *p_out++ = '-', x = -x; } int i = 0; do { s[i++] = x % 10 + '0'; } while (x /= 10); while (i--) { *p_out++ = s[i]; } } template T getint() { while (!isdigit(*p_in) && *p_in != '-') { p_in++; } bool negative = *p_in == '-'; int ret = negative ? 0 : *p_in - '0'; while (isdigit(*++p_in)) { (ret *= 10) += *p_in - '0'; }; return negative ? -ret : ret; } } io; int T; signed main() { T = io.getint(); while (T--) { int A, P; A = io.getint(), P = io.getint(); if (is_prime(P)) { io.putint(-1), io.putchar('\n'); continue; } if (P == 2) { io.putint(A % 2), io.putchar('\n'); } else { io.putint(1), io.putchar('\n'); } } }