n = int(input()) a = list(map(int, input().split())) count = sum(1 for x in a if x == 0) print("First" if count % 2 == 1 else "Second")