A=[3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101] while A[-1]<=10**8:A[-1]*=2 A[-1]//=2 for i in range(23,-1,-1): while A[i]<=A[i+1]:A[i]*=2 A[i]//=2 print(*A[:int(input())])