def calculate_area(base, height):
return 0.5 * base * height
def main():
print("Triangle Area Calculator")
base = float(input("Enter the base length of the triangle: "))
height = float(input("Enter the height of the triangle: "))
area = calculate_area(base, height)
print("The area of the triangle is:", area)
if __name__ == "__main__":
main()You can run this program and input the base and height of the triangle, and it will calculate and output the area. It was created with Python.