import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { static int profit(int b, int s, int c) { // Return the fixed profit. // int b1; // int s1; // int c1; // int profit; // s1 = s - profit; // b1 = b - profit; // c1 = c - b1 - s1 - profit; // c1 = c - (b - profit) - (s - profit) - profit; // c = c1 + (b - profit) - (s - profit) - profit; int n = 0; do { if((b - n) + (s - n) == c - n) { break; } n++; } while(n < Integer.MAX_VALUE); return n; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int t = in.nextInt(); for(int a0 = 0; a0 < t; a0++){ int b = in.nextInt(); int s = in.nextInt(); int c = in.nextInt(); int result = profit(b, s, c); System.out.println(result); } in.close(); } }