N = gets.to_i P = gets.split(" ").map{|s| s.to_i} k = P.inject(:*) while k >= 10 do k = k.to_s.split("").map{|s| s.to_i}.sum end puts k