N=int(input()) A=[int(x) for x in input().split() if x!=-1] a=0 for i in range(len(A)): a^=A[i] if a!=0: print("First") else: print("Second")