# Calculate Perimeter of a Paddock # Author: Damian Clark # Date: 26 May 2025 # Version: Version 1 # Purpose: calculate the perimeter of a paddock and display the price print('Welcome to the calculate program') print('To use this program you will enter the length and width of a paddock') # collect length and width length = int(input('What is the length? ')) width = int(input('What is the width? ')) #collect the price meter price = int(input('what is the price per meter? ')) #calucation perimeter = (length+width)*2 total = (price*perimeter) #display results print(f'The perimeter of the paddock is {perimeter} meters.') print(f'The total cost to put a fence around is ${total}.') print('The program has ended.')