#! /usr/bin/ruby
# function_return.rb

def addition x, y
  sum = x+y
  return sum
end

a, b = 3, 5

puts addition a,b
