#include #define FOR(i, a, n) for(ll i = (ll)a; i < (ll)n; i++) #define FORR(i, n) for(ll i = (ll)n - 1LL; i >= 0LL; i--) #define rep(i, n) FOR(i, 0, n) #define ALL(x) begin(x), end(x) using namespace std; using ll = long long; constexpr ll Mod = 998244353; constexpr ll mod = 1e9 + 7; constexpr ll inf = 1LL << 60; const double PI = acos(-1); template inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); } /*-------------------------------------------*/ int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector> res(n, vector(n)); rep(i, n) { int x = i, y = i; rep(j, n) { res[x][y] = i + 1; x++; y--; if(x == n) x = 0; if(y == -1) y = n - 1; } } rep(i, n) rep(j, n) cout << res[i][j] << " \n"[j == n - 1]; return 0; }