N = gets.to_i A = gets.split.map(&:to_i) if A.count(0) % 2 == 0 puts 'Second' else puts 'First' end