n = int(input()) a = list(map(int, input().split())) if a.count(0) % 2 == 0: print('Second') else: print('First')