#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int cnt[200200]; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int q; cin >> q; while(q--){ int n,m; cin >> n >> m; vector deg(n); for(int i=0;i> x >> y; x--; y--; deg[x]++; deg[y]++; } bool ok=false; for(int i=0;i1)ok=true; } for(int i=0;i