N = int(input()) sum = N for i in input().split(): i = int(i) if i != 0: sum += 1 sum = sum % 2 if sum == 0: print('Second') else: print('First')