#include #include using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; int main(){ int n; cin >> n; int x = 0; for (int i=0; i> a; if (a == 0){ x ^= 1; } } if (x > 0) cout << "First\n"; else cout << "Second\n"; }