N = int(input()) ans = '' for i in range(N): if i==0: ans += '1'*N elif i==1: ans += '0'*N else: ans += str(i)*N print(ans)