#include using namespace std; #define eb emplace_back #define ff first #define all(x) x.begin(), x.end() #define ss second #define read freopen("in.c", "r", stdin) #define write freopen("out.txt", "w", stdout) #define dbg(a) cout << "Line " << __LINE__ << ": " << #a << " => " << a << endl typedef long long ll; const ll mx = 100005; const ll mod = 1000000007; void testCase(int tc) { } int main() { int t; cin >> t; for (int i = 1; i <= t; ++i) testCase(i); }