#include <stdio.h>
#include <math.h>
double a[200000];
int main()
{
int tot=0;
int i;
while(scanf("%lf",&a[tot++])!=EOF);
tot--;
while(tot--)
{
printf("%.4lf\n",sqrt(a[tot]));
}
return 0;
}
#include <stdio.h>
#include <math.h>
double a[200000];
int main()
{
int tot=0;
int i;
while(scanf("%lf",&a[tot++])!=EOF);
tot--;
while(tot--)
{
printf("%.4lf\n",sqrt(a[tot]));
}
return 0;
}