// #include "atcoder/all" #include using ll = long long; const int MOD1000000007 = 1000000007; const int MOD998244353 = 998244353; const double PI = 3.14159265358979323846264338327950288; void solve(); int main() { std::ios_base::sync_with_stdio(false); // std::cin.tie(0); #ifdef LOCAL freopen("input.txt", "r", stdin); #endif // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); solve(); return 0; } void solve() { int n; scanf("%d", &n); std::vector a(n); int ans = 0; for (int i = 0; i < n; i++) scanf("%d", &a[i]); sort(a.begin(), a.end()); int c = std::count(a.begin(), a.end(), 0); if (c % 2) printf("First\n"); else printf("Second\n"); }