C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<stdio.h>
#include<math.h>
void rt(int);
int main(){
long long int a;
while(scanf("%d",&a)){
rt(a);
}
return 0;
}
void rt(int b){
printf("%lf\n",sqrt(b));
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run