#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) inf++; else x ^= val; } string F = "First", S = "Second"; string ans; if (inf == 0) { ans = S; } else if (inf == 1) { ans = F; } else { if (x == 0) ans = S; else ans = F; } cout << ans << endl; }