def hypotenuse(a, b):
    """Return hypotenuse of triangle."""
    return (a**2 + b**2) ** 0.5
