#include<bits/stdc++.h>
#define pb push_back//vector,deque
#define INF 0x3f3f3f3f
using namespace std;
const int N=1e5+5;
typedef long long ll;
int main()
{
// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
double x;
scanf("%lf",&x);
bool flag=false;
if(x<0){
flag=true;
x=0.0-x;
}
if(flag)printf("-");
printf("%.6lf\n",pow(x,1.0/3));
return 0;
}