input()
s = list(map(int, input().split()))
c = 0
for i in s:
    if i > 2:
        print("First")
        break
    if i == 2:
        c += 1
else:
    if c % 2 == 0:
        print("Second")
    else:
        print("First")
     
