reading you question literally, I think you mean what variable must you place the difference. "difference" is the word mathamaticians use to decribe the result of a subtraction.
But for coding.
sum = 1 + 2
thing = 1 + 2
var1 = 1+ 2
dif = 3 - 1
thing = 3 - 1
(even)
sum = 3 -1
will all accomplish just what they look like they will accomplish
sum = 9 -1
sum = sum - 5
results in, sum containing 3
You get to choose what the variable name is.
Jerry