2022级统计计算机双学位《程序设计原理与C语言》上机作业

1006. square root

单点时限: 2.0 sec

内存限制: 512 MB

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.

样例

Input
120
Output
10.954451
Input
100
Output
10.000000
Input
1
Output
1.000000