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