#include<bits/stdc++.h>
using namespace std;
int main()
{
	
	int n;
	cin>>n;
	for(int i=1 ; i<=n ; i++){
		for(int j=1 ; j<=n ; j++){
			cout<<setw(3)<<(i < j ? i : j);
		}
		cout<<endl;
	}
	return 0;
}

/**************************************************************
	Problem: 1196
	User: hbq
	Language: C++
	Result: Accepted
	Time:14 ms
	Memory:2072 kb
****************************************************************/