#include <bits/stdc++.h>
using namespace std;

using ll = long long;

#define loop(i, a, b) for (int (i) = (a); (i) < (b); (i)++) 

void solve() {
	
} 

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr); 
	int t;
	cin >> t;
	while (t--) solve();
}