sum = gets.chomp.split(" ").inject { |sum, i| sum.to_i + i.to_i } s = gets.chomp puts "#{sum} #{s}"