N = gets.to_i A = gets.split.map(&:to_i).sort puts A.each_cons(2).map { |a, b| (a - b).abs }.min puts A.last - A.first