Square Root

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

9.0

Output

3.00

Example 2

Input

4.0

Output

2.00

Example 3

Input

3.3

Output

1.82

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.