N = int(input()) A = list(map(int,input().split())) cnt = 0 for i in range(N): if A[i]==0: cnt += 1 if cnt%2==1: print("First") else: print("Second")