#this program calculates the primetre and area of different shapes print("this program calculates the primetre and area of different shapes") shape = input ("choose a shape from sqaue,rectangle, and circle.") #check user input if shape=="square": print("square") elif shape =="rectantgle": print("rectangle") else: print("circle") print("the program has ended")