import time #Add comments at the top of your program that has this information: #a. Title: perimater calc #b. Author: sande #c. Date: 26/05/25 #d. Version: Version 1 #e. Purpose: Create a program that calculates the perimeter of a paddock and the price to put a fence around it. The program will ask the user to enter numbers. It will then calculate the perimeter using a formula. When the perimeter is calculated the price per meter can be added to work out the cost to put a fence around it. The perimeter of the paddock, and the total cost to fence it be displayed at the end of the program. The user will see a message displayed letting them know the program has finished. #name input name = input('what is your name?') print(f'hello {name}!') #welcome to the calculator print('Welcome to the fence calculator program ') time.sleep(1.7) print('To use this program you will enter the length and width of a paddock and the price to put a fence ') print("""...""") #collects the inputs of length, width and cost length = float(input('what is the length? ')) width = float(input('what is the width? ')) cost = float(input('what is the price per meter? ')) #calculate the permiter perimeter = 2 * (length + width) Totalcost = (perimeter * cost) print(f'The perimeter would be {perimeter}') print(f'And the cost is ${Totalcost}') if Totalcost >= 500: print('wow thats alot!') if Totalcost <= 480: print('Thats cheap!') print('progam has ended')