n = int(input()) a = list(map(int,input().split())) boo = 0 for num in a: boo = boo^num if boo: print("First") else: print("Second")