N=int(input()) ans=[] cnt=N while(cnt>0): for k in range(cnt): ans.append(str(N)) ans.append("\n") cnt-=1 ans=ans[:-1] print("".join(ans))