import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author cteam015 */ public class Game { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int N = Integer.parseInt(st.nextToken()); int odd =0; st = new StringTokenizer(br.readLine()); int current; for (int i = 0; i < N; i++) { current = Integer.parseInt(st.nextToken()); if (current%2==1&¤t!=1) { odd++; } } if (odd%2==1) { System.out.println("First"); }else{ System.out.println("Second"); } } }