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(); long v = sc.nextLong(); long[] a = new long[n]; long sum = 0; for (int i = 0; i < n; i++) { a[i] = sc.nextLong(); sum += a[i]; } sc.close(); if (sum <= v) { System.out.println("Draw"); return; } int n2 = 1 << n; long[] tot = new long[n2]; for (int i = 0; i < n2; i++) { for (int j = 0; j < n; j++) { if ((i >> j & 1) == 1) { tot[i] += a[j]; } } } int[] dp = new int[n2]; label: for (int i = n2 - 1; i >= 0; i--) { if (tot[i] > v) { dp[i] = 24; continue; } boolean[] ap = new boolean[25]; for (int j = 0; j < n; j++) { if ((i >> j & 1) == 0) { ap[dp[i + (1 << j)]] = true; } } for (int j = 0; j < ap.length; j++) { if (!ap[j]) { dp[i] = j; continue label; } } throw new Exception(); } if (dp[0] == 0) { System.out.println("Second"); } else { System.out.println("First"); } } }