I have two numbers, the first, is the original price, the second, is the discounted price.
I need to work out what percentage a user saves if they
((list price - actual price) / (list price)) * 100%
For example:
((25 - 10) / 25) * 100% = 60%