N = int(input()) A = list(map(int, input().split())) zero = A.count(0) if zero % 2 == 1: print('First') else: print('Second')