#include using namespace std; int T; long A,P; bool isp[5<<20]; main() { isp[1]=true; for(int i=2;i<5<<20;i++)if(!isp[i]) { for(int j=i+i;j<5<<20;j+=i)isp[j]=true; } cin>>T; for(;T--;) { cin>>A>>P; if(!isp[P]) { A%=P; cout<<(A?1:0)<