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