Question: a and b are read from input as floating-point values, representing the base and height of a triangle. Compute the triangle's area as (a*b)/2. Use f-string's = sign feature within the provided curly brackets as the replacement field to output both the expression and result.
Invalid Code: a = float(input())
b = float(input())
print(f'{a*b/2}')
Helping: I need to put a string that says (a*b)/2= within print(f'{}) without deleting it.