N = int(input()) A = list(map(int, input().split())) xor = 0 notzero = 0 for a in A: xor ^= a if a != 0: notzero += 1 if xor > 0: print('First') elif xor == 0 and notzero % 2 == 0: print('Second') else: print('First')