#include using namespace std; int main() { int N, xor_acc = 0, cnt_inf = 0; cin >> N; vector ans = {"Second", "First"}; for( int i = 0; i < N; i++ ) { int A; cin >> A; if( A == -1 ) cnt_inf++; else xor_acc ^= A; } if( xor_acc == 0 && cnt_inf%2 == 0 ) cout << ans[0] << endl; else cout << ans[1] << endl; }