Arithmetic Example 1

number total = 10; total = total + surcharge; total = total - discount; total += total * .05; return total;
Peacock