import sys input=lambda:sys.stdin.readline().rstrip() N=int(input()) for i in range(N): print(*[(2*j-i)%N+1 for j in range(N)])