N = gets.to_i a = gets.split.map(&:to_i) _, ans = a.inject([0, 0]) {|(m, k), x| [[m, x].max, k + (x < m ? 1 : 0)]} puts ans