N = gets.to_i A = gets.split.map(&:to_i) cnt = 0 A.each_cons(2) do |a, b| cnt += 1 if a > b end puts [2, cnt].min