#perimeter and shape program #kaio #3/06/25 #V1 #calculate perimeter and area of a shape print('welcome to the perimeter and shape program') print('This program will calculate the perimeter and area of a shape') #collect: S R C ('Enter S for square, R for rectangle or C for circle') #collect: S R C #collecrt: length, width length = float(input('what is the length? ')) width = float(input (' what is the width? ')) ##rectangle formula perimeter=(length+width) * 2 area= length * width