N = int(input()) A = list(map(int,input().split())) tmp = 0 for a in A: if a > 0: tmp ^= a if tmp == 0: print("Second") else: print("First")