#include using namespace std; int main() { int n; cin >> n; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } if (n % 2 == 1) { cout << "First" << endl; } else { cout << "Second" << endl; } return 0; }