For Loop Sum – 1

Problem Statement

Given a number n, compute the sum:

1 + 1/2² + 1/3² + … + 1/n²

Input

A single integer n (1 ≤ n ≤ 100000).

Output

Print the value of the sum.

Example

input output
2 1.25