N = input()

ans = 0
for v in map(int, input().split()):
	if v == 0:
		ans ^= 1

print("First" if ans else "Second")