n=int(input()) a=list(map(int,input().split())) ans = 0 for i in range(n): if a[i] == 0: ans ^= 1 print('First' if ans == 1 else 'Second')