import sys input=lambda: sys.stdin.readline().rstrip() n=int(input()) s=str(n) for i in range(n)[::-1]: print(s*(i+1))