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