#include<iostream>
using namespace std;
int main(){
int t=0;
cin>>t;
while(t--){
int x=0,y=0,a=1,b=1;
cin>>x>>y;
//以上为输入
if(x>y) cout<<"0 0\n";
else if(y%x) cout<<"0 0\n";
else{
b=y/x;
cout<<a<<' '<<b<<endl;
}
}
return 0;
}
不复杂,只要有答案,a=1就行,b吗,你应该知道了