#include<iostream> #include<cmath> using namespace std; int main() { double x; cin>>x; double b; b = sqrt(x); cout<<b; return 0; }