N = int(input()) A = list(map(int,input().split())) c = A.count(0) if c%2 == 0: print("Second") else: print("First")