import java.util.Scanner;

/**
 *
 * @author cteam010
 */
public class Game {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int amount = sc.nextInt();
        
        int score = 0;
        for( int i = 0 ; i < amount; i++){
            score += sc.nextInt();
        }
        
        if(score%2 == 0)
            System.out.println("First");
        else
            System.out.println("Second");
        
    }
}
