use std::io; fn main() { let mut n = String::new(); io::stdin().read_line(&mut n).ok(); let mut a = String::new(); io::stdin().read_line(&mut a).ok(); let a: Vec = a.trim().split_whitespace().map(|x| x.parse().unwrap()).collect(); println!("{}", if a.iter().cloned().filter(|&x| x == 0).count() % 2 == 0 { "Second" } else { "First" } ); }