AandP

AandP.rb

#Input reader example
#Given two numbers add them together
puts "Please enter two numbers, each on a new line :"
puts "\n"
firstNumber = gets.chomp.to_i
secondNumber = gets.chomp.to_i
total = firstNumber + secondNumber
puts "Your total is #{total}"