If dblMiles >= 500 Then
dblMiles = dblMiles * 0.45
Else
dblMiles = dblMiles * 0.25
End If

The dblMiles variable contains the number 575 before the code above is processed. What value will be in the variable after the code is processed?