CGI Ruby

#!/usr/bin/ruby
require 'cgi'
cgi = CGI.new
from = cgi['from'].to_i
to = cgi['to'].to_i
number = rand(to-from+1) + from
puts cgi.header
puts "#{number}"
An associated, but basic, form that could send the correct data would have HTML:

   For a number between 
    and