#32724: _C++


daniel90100199@gmail.com (tkuee)


#include <cmath>
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
    unsigned long long int N;
    while (cin >> N)
    {
        cout << int(round(cbrt(N))) << "\n";
    }
    return 0;
}