// Returns a value to the power of 1
double power1(double a) {
  return a;
}
