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++) { int b = a[i] - 1; if (a[i] == 2) { b = 0; } else if (a[i] < 2) { b = a[i]; } x ^= b; } if (x == 0) { System.out.println("Second"); } else { System.out.println("First"); } } }