//URL - //CSES #include using namespace std; #ifdef LOCAL #define dbg(x) cerr << #x << " = " << x << endl #else #define dbg(x) #endif #define ll long long #define ld long double #define ar array #define all(x) (x).begin(), (x).end() #define sza(x) (int)(x).size() const ll INF = 1e18; const int MOD = 1e9 + 7; void solve() { long long n; cin>>n; for(long long k = 1;k<=n;k++){ long long total = (k*k*(k*k-1))/2; long long attack = 4 *((k-1)*(k-2)); cout<> tc; while(tc--) solve(); }