4346. square root

Naive编程基础输入输出

时间限制:2000 ms

内存限制:512 MiB

题面

Write a program to input an integer n, and to output square root of n with format %f.

输入格式

input an integer n.

输出格式

output square root of n.

样例

输入

120

输出

10.954451

输入

100

输出

10.000000

输入

1

输出

1.000000