n = int(input()) a = list(map(int, input().split())) g = 0 for x in a: g ^= 1 - bool(x) print("First" if g else "Second")