Run ID:77513
提交时间:2024-06-09 20:32:31
n = int(input()) for i in range(n): for j in range(n): print(min(i, j) + 1, end = " ") print()