#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; } if (inf == 0) { cout << "Second" << endl; } else if (inf == 1) { cout << "First" << endl; } else if (inf == n) { if (n % 2 == 0) { cout << "Second" << endl; } else { cout << "Frist" << endl; } } else if (inf == 2) { if (x == 0) cout << "Second" << endl; else cout << "First" << endl; } else { cout << "First" << endl; } }