import sys #sys.setrecursionlimit(10 ** 6) INF = float('inf') #10**20,2**63に変えるのもあり MOD = 10**9 + 7 MOD2 = 998244353 def solve(): def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LC(): return list(input()) def IC(): return [int(c) for c in input()] def MI(): return map(int, sys.stdin.readline().split()) N = II() A = LI() DP = [0]*(2 ** N) for S in range(2 ** N): if bin(S)[2:].count("1") %2 == 1:continue #奇数のペアはないのでスルー。 for a in range(N): # ペアのうち一人のa for b in range(N):# ペアのうち一人のb if a == b:continue#まぁ、これはおかしい if (S >> a & 1) or (S >> b & 1):continue#すでにペアになってる人は使えない。 DP[S | (1 << a) | (1<