#include<bits/stdc++.h>
using namespace std;

int main(){
    int64_t gr = 0;
    int64_t N; cin >> N;
    while(N--){
        int64_t a; cin >> a;
        if(a == -1){
            gr ^= INT64_MAX;
        }else{
            gr ^= a;
        }
    }
    cout << (gr == 0 ? "Second" : "First") << '\n';
}