#This program caculates the perimeter and area of diffrent shapes print (" This program caculates the perimeter and area of diffrent shapes ") shape = input ("Choose a shape from square,rectangle or circle ") #check user input if shape== "square": print("square") elif shape== "rectangle": print("rectangle") else: print("circle") print(" the program has ended")