# coding: utf-8 # Your code here! c = input() n = int(c) for i in range(n, 0, -1): print(c * i)