#include using namespace std; #define INF 1.1e9 #define LINF 1.1e18 #define FOR(i,a,b) for (int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() #define pb push_back #define pf push_front #define fi first #define se second #define BIT(x,n) bitset(x) #define PI 3.14159265358979323846 typedef long long ll; typedef pair P; typedef pair PP; //----------------------------------------------------------------------------- int n,sum,w; bool dp[1<<15]; int main() { cin.tie(0); ios::sync_with_stdio(false); cin>>n; dp[0]=true; REP(i,n) { cin>>w; for(int j=10000;j>=0;j--) { if(dp[j]) dp[j^w]=true; } } REP(i,1<<15) sum+=dp[i]; cout<