#include #include using namespace std; int main() { int n; cin >> n; vector a(n), b(n); for (int i = 0; i < n; i++) cin >> a[i]; b[0] = a[0]; for (int i = 1; i < n; i++) b[i] = a[i] - a[i - 1]; int B = 0; for (int i = n - 1; i >= 0; i -= 2) B ^= b[i]; if (B == 0) cout << "Second" << endl; else cout << "First" << endl; return 0; }