#include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; int cnt = 0, xo = 0; for (int i = 0; i < n; i++) { int u; cin >> u; if (u == -1) { cnt++; } else { xo ^= u; } } if (cnt % 2) { cout << "First"; } else { cout << (xo == 0 ? "Second" : "First"); } }