import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); } sc.close(); int x = 0; for (int i = 0; i < n; i++) { if (a[i] == 0) { x ^= 1; } } if (x == 0) { System.out.println("Second"); } else { System.out.println("First"); } } }