#include<iostream> #include<cmath> using namespace std; long long n; int main() { cin >> n; cout << round(pow(n, 1.0 / 3)) << endl; return 0; }```