#include <iostream> #include <math.h> using namespace std; int main() { double x, a; scanf("%lf", &x); a = sqrt(x); cout<<a; return 0; }