#include using namespace std; using ll=long long; using ld=long double; #define FOR(i, a,b) for(ll i=a;i<(ll)b; i++) #define F(N) FOR(i, 0, N) #define FF(N) FOR(j, 0, n) #define aa first #define bb second #define PB push_back // sry Vasku int main() { int n; cin >> n; int xr = 0; F(n) { int x; cin >> x; x--; xr ^= x; } if (xr) { cout << "First" << endl; } else { cout << "Second" << endl; } return 0; }