def triangle_surf(base, height):
  return (base * height / 2)

s = triangle_surf(20, 5)
print s
print triangle_surf(25, 8)

