#shape print ("this program calulates the preimeter and area of differnt shapes") shape = input("choose a shape from square or circle") if shape =="square": print("square") elif shape == "rectangle": print ("rectangle") else: print ("circle") print("program has eneded")