N = int(input()) A = list(map(int,input().split())) import sys if N % 2 == 0: print('Second') exit() else: print('First') exit()