Run ID:77514

提交时间:2024-06-09 20:33:21

n=int(input()) for i in range(n): for j in range(n): print(min(i,j)+1,end=" ") print()