import sys input = sys.stdin.readline from collections import * N = int(input()) A = list(map(int, input().split())) X = 0 for Ai in A: X ^= Ai if X==0: print('Second') else: print('First')