num1, num2=gets.split.map(&:to_i) # num2=gets.to_i # finding sum sum=num1+num2 # printing the result puts "#{sum}"