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