I am trying to create a simple trapezoid area calculator, but I need to upload it to a website to get graded and the site gives me no credit due to the fact that numbers have 1 less zeroes after the initial result, and they also don't round up if it happens to not give an exact number. How can I solve this problem?
b1 = float(input())
b2 = float(input())
h = float(input())
sq_area = (b1 + b2) * h / 2
print(sq_area)