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)