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