#!/usr/bin/ruby -w
print "Content-type: text/html\n\n"
puts "<html><body style=font-size:2.1em;color:#336699;>"
puts "hello".to_i.to_s + "<br>"
puts "hello".to_f.to_s + "<br>"
puts 3.5.to_i.to_s + "<br>"
puts 3.5.to_s + "<br>"
puts 4.to_f.to_s + "<br>"
puts 5.to_s + "<br>"
puts 12.is_a?(Integer).to_s + "<br>"
puts "</body></html>"