Read the following algorithm written in pseudocode:
VAT_RATE = 0.20 subtotal = 45.50 totalPrice = subtotal * (1 + VAT_RATE) print(totalPrice)
Identify the name of one variable used in this algorithm.