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