#include<iostream>
using namespace std;
#include<cmath>
int main()
{
    int a;
    cin>>a;
    int b=sqrt(a);
    cout<<b<<endl;
}