#include <stdio.h> #include <math.h> int main( void ) { unsigned n; if( scanf("%u",&n) == 1 ) { printf( "%.3f %u\n", sqrt(n), n*n*n ); } }