#include #include #include #include #include using namespace std; using ll = long long; int main() { int n; cin >> n; ll inf = 0; ll x = 0; for (int i=0; i> val; if (val == -1) { if (inf == 0) { inf++; continue; } inf++; x ^= 1; } else { x ^= val; } } if (x == 0LL) cout << "Second" << endl; else cout << "First" << endl; }