#include<iostream>
#include<algorithm>
#include <cmath>
//就是找小于n的立方数的个数其实也就是求数n的立方根取整。
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int main()
{
double n;
cin>>n;
printf("%lld",(ll)pow(n,1.0/3));
return 0;
}