#include #include #include #include #include using namespace std; typedef __int64 LL; LL gcd(LL a,LL b) { if(b==0) return a; return gcd(b,a%b); } LL a[1005]; int n,m; struct { int l,r; LL ans; } Q[1005]; void init() { for(int i=0;i<1005;i++) a[i]=1LL; } int main() { int t; bool ok; cin>>t; while(t--) { ok=1; init(); cin>>n>>m; for(int i=0;i