from math import *

N = input("N ?")
for I in range(0,N):
    U = sqrt(2*I+4)
    print U
