s = gets.chomp!.split('') a = s.select { |x| x.match(/[0-9]/) } puts a.map(&:to_i).sum