def Main(): n=int(input()) for i in range(9,9-n,-1): print(str(i)*n,end="") print() Main()