#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n, a;
    cin>>n;
    a=sqrt(n);//int自带向下取整
    cout<<a;
    return 0;
}