def W(k): w=10-2*k return w n=int(input("n =")) for i in range(0,n+1): print(W(i))