You are given a floating point number x, write a static method sqrt(double x) that returns the square root of this number

Example 1

Input

5.5

Output

6

Example 2

Input

5.2

Output

5

Example 3

Input

3.7

Output

4