N = gets.to_i A = gets.split.map(&:to_i) if N.even? puts "Second" else puts "First" end