#This Program cauculates the perimeter and area of different shapes print("This Program cauculates the perimeter and area of different 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")