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