str = gets.chomp.split('') sum = 0 str.each do |s| if s.to_i != 0 sum += s.to_i else next end end puts sum