#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <stdbool.h>

int profit(int b, int s, int c) {
    return b+s-c;
}

int main() {
    int t; 
    scanf("%i", &t);
    for(int a0 = 0; a0 < t; a0++){
        int b; 
        int s; 
        int c; 
        scanf("%i %i %i", &b, &s, &c);
        int result = profit(b, s, c);
        printf("%d\n", result);
    }
    return 0;
}