N, M = gets.split.map(&:to_i) A = gets.split.map(&:to_i) if A[0] >= 2 puts 'First' elsif A.all?(1) if N.even? puts 'Second' else if M == 0 puts 'First' else puts 'Second' end end else arr = A.take_while { |a| a == 1 } if arr.size.even? puts 'Second' else puts 'First' end end