#include using namespace std; int main() { int n; cin >> n; int x = 0, c = 0; for (int i = 0; i < n; i++) { int a; cin >> a; if (a >= 0) { x ^= a; } else { c++; } } if (c % 2) { cout << "First" << endl; } else { cout << (x ? "First" : "Second") << endl; } }