There are N sports in a college sports fest. There are 2 players A and B, each of the N sports will be chosen by one of them and points that A will get by playing sport i is Xi while that of B is Yi. Now, choice filling has started and A will choose first and each player will be choosing one sport alternatively until they choose all. A and B are rivals and want their score (Sum of A's points - sum of B's score) to be maximized. Find the score of A if they both play optimally.
Input format
Output format
For each test case, print a single line containing the score of A.
Constraints
A will choose the third sport, B will choose second and A will sum up with first.
Points of A=5+1=6 and B=2. So A's score=6-2=4. Note that this is optimal.