float hypotenuse (float a, float b) 
{
  float square (float z) 
  { 
    return z * z; 
  }

  return sqrt (square (a) + square (b));
}
