/* -*- coding: utf-8 -*- * * 2044.cc: No.2044 Infinite Nim - yukicoder */ #include #include using namespace std; /* constant */ /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); int x = 0, m = 0; for (int i = 0; i < n; i++) { int ai; scanf("%d", &ai); if (ai >= 0) x ^= ai; else m ^= 1; } if (m || (m == 0 && x != 0)) puts("First"); else puts("Second"); return 0; }