n = int(input()) a = [int(i) for i in input().split()] if n % 2 == 0: print("Second") else: print("First")