Answer:
The result of this is -4 is explained below.
Step-by-step explanation:
if we properly write the question
a = 5
b = 2
c = 7
result= (a*b) - (c*b)
print(result)
The result of (a*b) = 5*2 = 10
The result of (c*b) = 2*7 = 14
now (a*b) - (c*b) => 10-14 => -4
So the correct answer is -4