n=int(input())
m=0
s=0
for i in range(1,n+1):
    m+=((-1)**(i-1))*(2*i-1)
    s+=1/m
print(f"{s:.3f}")