#include using namespace std; using LL = long long; using ULL = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int N; LL V; LL A[20]; LL W[1 << 20]; int memo[1 << 20]; int dp(int X) { if (memo[X] != -1) return memo[X]; memo[X] = 0; rep(d, N) { if (!((1 << d) & X)) continue; int nx = X - (1 << d); if (W[nx] < 0) continue; if (dp(nx) == 0) memo[X] = 1; } return memo[X]; } int main() { cin >> N; cin >> V; rep(i, N) cin >> A[i]; W[0] = V; rep(d, 20) rep(i, 1 << d) { W[i + (1 << d)] = W[i]; W[i] -= A[d]; } if (W[0] >= 0) { cout << "Draw" << endl; return 0; } rep(i, 1 << N) memo[i] = -1; if (dp((1 << N) - 1)) cout << "First" << endl; else cout << "Second" << endl; return 0; }