#include <iostream>
using namespace std;
int main(){
    int t;
    long long int n,res,x;
    scanf("%d",&t);
    while(t--){
            scanf("%lld",&n);
            res=0;
    for(int i=0;i<n;i++){
            scanf("%lld",&x);
            res^=x;
    }
    if(res==0)
        printf("-1\n");
    else 
        printf("%lld\n",res);
}
return 0;
}
this same program when i used cin and cout was timed out in hackerearth. But passed with scanf and printf.
 
    