csc-python-solutions/11/c/2 - The Triangles are Right.py
2021-02-18 09:25:33 +01:00

3 lines
69 B
Python

def rightTrianglePerimeter(a, b):
return a + b + hypotenuse(a, b)