#include #define rep(i, n) for(int i = 0; i < (n); ++i) using namespace std; int main() { int n; long long v; cin >> n >> v; vector a(n); for(auto &e : a) cin >> e; vector c(1 << n); rep(s, 1 << n) rep(i, n) { if(s & (1 << i)) c[s] += a[i]; } vector memo(1 << n, -1); auto f = [&](auto &&f, int s) -> int { if(memo[s] != -1) return memo[s]; bitset<22> bs(s); int p = bs.count() % 2; if(c[s] > v) return memo[s] = p ^ 1; rep(i, n) { if(!bs[i] && f(f, s | (1 << i)) != p) return memo[s] = p ^ 1; } return memo[s] = p; }; cout << (c[(1 << n) - 1] <= v ? "Draw" : f(f, 0) ? "First" : "Second") << '\n'; return 0; }