n = int(input()) print(*[str(n) * i for i in range(n, 0, -1)], sep="\n")