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