N = int(input())
A = list(map(int,input().split()))
x = A.count(0)
if x % 2 == 0:
    print("Second")
else:
    print("First")