# this program calculates the perimeter and area of different shapes print ("this program calculates the perimeter and area of different shapes.") shape = input("choose a shape from either, 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")