n = int(input()) a = [0]*(n%2)+list(map(int,input().split())) x = 0 for i in range((n+1)//2): x ^= a[2*i+1]-a[2*i] print("First" if x else "Second")