#include using namespace std; int n; int main() { cin >> n; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { cout << (i + j) % n + 1; if (j < n - 1) cout << " "; } cout << endl; } }