#include <iostream..h>
#include <math.h>
#include <conio.h>
int main(int argc, char* argv[])
{
double x,z,y;
z=(1.0/3.0);
cout<<"\n digite un numero:: ";
cin>>x;
y=pow(x,z);
cout<<"\n"<<y;
getch();
return 0;
}