Write a Python program that:
- Prompts the user for the base and height of a triangle
- Computes the area using: 0.5 * base * height
- Prints the result in the required format.
Enter base: 10
Enter height: 5
Area of the triangle: 25.0
- Write all prompts and logic inside
main.py - Follow the format exactly
- Push to GitHub to receive your autograded score
- Test 1: base=10, height=5 โ 5 points
- Test 2: base=3, height=6 โ 5 points
- Test 3: base=7.5, height=4 โ 5 points
Total: 15 points