#include <stdio.h> #include <math.h> int main(void) { double a = 5; scanf("%lf", &a); double b = sqrt(a); printf("%lf\n", b); return 0; }