input() from functools import reduce from operator import xor if reduce(xor, map(int, input().split())): print("First") else: print("Second")