#include using namespace std; int main(){ int n, v, ans = 0; cin >> n; while(n--)cin >> v, ans ^= v; cout << (ans ? "First" : "Second") << endl; }