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

def square_it x
  x**2
end

puts square_it 5
