n = int(input()) stone = list(map(int, input().split())) ans = stone.count(0) print("First" if ans % 2 != 0 else "Second")