#include using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, ans, x; cin >> n; ans = 0; while(n--){ cin >> x; if(x == 0){ ans ^= 1; } } if(ans & 1) cout << "First\n"; else cout << "Second\n"; return 0; }