n = int(input()) x = 0 cnt = 0 for a in map(int, input().split()): if a == -1: cnt += 1 else: x ^= a print('First' if cnt % 2 or x else 'Second')