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