#include<bits/stdc++.h> using namespace std; int main(){ long long n; cin >> n; int x = sqrt(n); cout << x; return 0; }