#shape perimeter calcultor print("This prograam calculates the perimeter and area of diffrent shapes") shape = input("Choose a shape from square, rectangle or circle ") if shape =="square": print("Square") elif shape =="rectangle": print("rectangle") else: print("circle") print("The program has ended")