#include "bits/stdc++.h" using namespace std; #define int long long #define ll long long #define rep(i,n) for(ll i = 0; i < (n); i++) #define P pair #define ld long double ll INF = (1LL << 60); int mod = 1000000007; signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; vectora(n); rep(i, n)cin >> a[i]; bool sente = true; int s = 0, k = 0; rep(i, n) { if (a[i] == 1) { if (sente) { s += -m + 1; sente = false; } else { k += -m + 1; sente = true; } } else { if (sente) { s += a[i] - 1; k += -m + 1; } else { s += -m + 1; k += a[i] - 1; } } } if (s <= k) { cout << "Second" << endl; } else { cout << "First" << endl; } return 0; }