N = gets.chomp.to_i p = gets.chomp.split(" ").map(&:to_i) s = p.inject(:*) if s%9 ==0 p 9 else p s%9 end