num = int(input()) #num = 5 #num = 10 i = num while i > 0: print(str(num) * i) i -= 1