Complete the program so that it runs all 3 subroutines
def rectangle():
length = int(input(“What is the length of your rectangle?”))
width = int(input(“What is the width of your rectangle?”))
area = length*width
print(“Your area is “+str(area))
def menu():
choice = input(“Which shape do you want to find the area of?\nrectangle\ncircle\ntriangle”)
if(choice == “rectangle”):
rectangle()
elif(choice == “triangle”):
print(“triangle”)
elif(choice == “circle”):
print(“circle”)
else:
print(“Not a valid choice”)
menu()
print(“Welcome to the shape area finding program”)
print(“…………………………………..”)
menu()