#well known N = int(input()) ans = "" for i in range(N): if i == N-1: ans += "4" else: ans += "3 " print(ans)