#include <cmath>
#include <iostream>
int main()
{
    double d;
    std::cin >> d;
    std::cout << std::cbrt(d) << '\n';
}