// Returns a value to the power of 3
double power3(double a) {
  return a*a*a;
}
