Let's say i want to perform a subtraction on a variable (say, Energy) by 5%, the shortest way i can think of is:
Tolerance = 0.05 * Energy
Energy = Energy - Tolerance
or
Energy = Energy - 0.05*(Energy)
I know it's already pretty short, but is there a shorter, elegant way?