#include <iostream> #include<cmath> using namespace std; int main() { int long long a,b,c; cin >> a; b = a*a;//先平方 c = pow(b,0.5);//再開根 cout << c << endl; return 0; }