# Read the numbers b and h like this: base = float(input('Enter Base: ')) height = float(input('Enter Height: ')) # Print the result with print() area = 0.5 * (base * height) print(area)