You are on page 1of 1

# The base of the triangle

base = 12
# Height of the triangle
height = 16
# Calculate area of triangle
area = 1 / 2 * base * height
print(area)

You might also like