3 lines
69 B
Python
3 lines
69 B
Python
|
def rightTrianglePerimeter(a, b):
|
||
|
return a + b + hypotenuse(a, b)
|