Giving the following subprogram, write a driver program that calls this subprogram.
Subprogram WriteOutput(float OldPrice, Float Rate, Float NewPrice)
Write "The Original price of the item is $ " + OldPrice
Write "The discount is : " + Rate + "%"
Write "The sale price of the item is $ " + NewPrice
End Subprogram