long long int addsub (long long int a, long long int b) { if (a>=b) return a-b; else return a+b; }
im trying to change th