A programmer is writing an algorithm to calculate parcel delivery costs.
constant MAX_WEIGHT = 20
constant OVER_LIMIT_CHARGE = 15.50
variable packageWeight = real(input("Enter weight: "))
variable basePrice = 5.00
if packageWeight > MAX_WEIGHT then
totalPrice = basePrice + OVER_LIMIT_CHARGE
else
totalPrice = basePrice
endif
Give the name of one constant used in this algorithm.