﻿from math import *

N=int(input())
S=0
for k in range(N):
    S=S+cos(k*pi/N)
    print(S)

