n=int(input()) L=list(map(int,input().split())) cnt=0 for e in L: if e==0: cnt+=1 print("First" if cnt%2 else "Second")