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