#include <iostream> #include <cmath> //https://www.cainiaojc.com/cpp/cpp-library-function-cmath-cbrt.html using namespace std; double n; int main(){ cin >> n; printf("%lf", cbrt(n)); return 0; }