#include using namespace std; int main() { int N; cin >> N; int ans=0; int i=1; while(i*i<= N){ i++; ans++; } cout<