def standard_in_out() a, b = gets.split.map(&:to_i) str = gets puts "#{a + b}\n#{str}" end standard_in_out