Problem6131--基础函数使用 —— sqrt

6131: 基础函数使用 —— sqrt

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

对一个实数 $x$ 进行开根号。

Input

一行一个实数 $x\ (0 \leq x \leq 2 \times 10^9)$。

Output

一行一个实数,表示结果,保留小数点 $3$ 位。

Sample 1 Input

2

Sample 1 Output

1.414

Sample 2 Input

16

Sample 2 Output

4.000

Sample 3 Input

18.34

Sample 3 Output

4.283

Source/Category