# Title: Fence Program # Author: Jono # Date: 27/05/2025 # Version: Version 1 - first version, Version 1.1 - minor revisions # Purpose: Summary of what the code does / The desired outcome. print("Welcome to calcultor program") print('To use this program you will enter the length amd width of a paddock ') # collect input: Length, Width & 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 perimeter and total cost perimeter = (length + width) * 2 # display results print(f'The primeter is {perimeter}') print('The program has ended')