while True: try: n = int(input()) for i in range(1,n+1): for j in range(1,i+1): s = int(j) print(f'{s} ',end='') print() except EOFError: break