using namespace std;
int main(){ double n,m; cin >> n; m = cbrt(n); cout<<setiosflags(ios::fixed)<<setprecision(6)<<m; return 0; }