https://github.com/codedex-io/python-101/blob/547165d576ce80eb2a64e8a6b54c9482b696a7c4/2-variables/09_hypotenuse.py#L7 import math a = int(input("enter number:")) b = int(input("enter number:")) c = math.sqrt((a**2) + (b**2)) print(c)
python-101/2-variables/09_hypotenuse.py
Line 7 in 547165d
import math
a = int(input("enter number:"))
b = int(input("enter number:"))
c = math.sqrt((a2) + (b2))
print(c)