csc-python-solutions/11/c/1 - Hypothenuse.py
2021-02-18 09:25:46 +01:00

3 lines
49 B
Python

def hypotenuse(a, b):
return (a**2+b**2)**0.5