N = int(input()) A = list(map(int, input().split())) if A==A[::-1] and 1<=max(A)<=10**9 and 1<=min(A)<=10**9: if N%2==0: print('Second') else: print('First')