#include using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, v = 0, v2; cin >> n; for(int i = 0; i < n; i++){ cin >> v2; v += (v2 == 0); } cout << (v & 1 ? "First" : "Second") << '\n'; }