N=10**int(input()) i=1 while i<=N: jouyo=N%i if jouyo==0: print(i) i+=1