def main(): n = int(input().strip()) a = list(map(int, input().split())) for i in a: if i % 2 == 1: print("First") return print("Second") main()