#include <iostream>
#include <math.h>

int main ()
{
  printf ("5 ^ 3 = %f\n", pow(5.0, 3.0));
  return 0;
}
