#include using namespace std; void profit(int b, int s, int c) { int x; x=b+s-c; cout<> t; for(int a0 = 0; a0 < t; a0++){ int b; int s; int c; cin >> b >> s >> c; profit(b, s, c); // cout << result << endl; } return 0; }