I want to solve this exercise https://www.codewars.com/kata/5648b12ce68d9daa6b000099/train/python

How can I count result of count variable from first and second loop together ? Result from first loop is 4-2 = 2, now I want sum of the 2 + result from second loop 10-6= 4. So the total sum should be 6 . Thanks for your tips :)
array =[(4,2), (10,6)]
print((array))
print(array[1])
for x in array:
count = (x[0] - x[1])
print (count)
I am not sure if this process is good for the exercise but I want it try this way :)
Thanks :)