array = gets.chomp.split("").select{|s|s < "a"} sum = 0 array.each{|value| sum += value.to_i } puts sum