Create a program that reads the length and width of a farmer’s field from the user in feet.
Display the area of the field in acres. Hint: there are 43,560 square feet in an acre.
def main():
# ask for input from the user
length = float(input("Enter the length of the field in feet: "))
width = float(input("Enter the width of the field in feet: "))
# compute the area in acres
acres = length * width / 43560
# display the result
print("The area of the field is", acres, "acres")
main()