#include<stdio.h>
#include<math.h>

double myfun(double x);

int main(void){
	for(double x = 0; x <= 10; x += 0.05 )
		printf( "%g %g %g\n", x, myfun(x), cbrt(x) );
return 0;
}
