n=int(input()) s="" if n==1: print("1") else: for i in range(n-1,-1,-1): s+=str(i) print(s*n)