#problem 13 import math def hypotenuse(a,b): return math.sqrt(a**2+b**2) #or you can write return math.sqrt(math.pow(a,2)+math.pow(b,2)) def main(): a1=float(input("enter side of triangle 1 ")) b1=float(input("enter side of triangle 1 ")) h1=hypotenuse(a1, b1) a2=float(input("enter side of triangle 2 ")) b2=float(input("enter side of triangle 2 ")) h2=hypotenuse(a2, b2) print("hypotenuse for triangle 1", h1) print("hypotenuse for triangle 2", h2) if(h1