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