fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let mut a = String::new(); std::io::stdin().read_line(&mut a).ok(); let a: Vec = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let infs = a.iter().filter(|&&v| v == -1).count(); let normal_lose = a.iter().filter(|&&v| v != -1).fold(0isize, |x, &y| x ^ y) == 0; if infs % 2 == 0 && normal_lose { println!("Second"); } else if infs % 2 == 0 && !normal_lose { println!("First"); } else { println!("First"); } }