#!/usr/bin/ruby
print "Content-type: text/html\n\n"
puts "<html><body style=font-size:1.6em;color:green;>"
n = 2 + 4 + 6 + 8
n /= 5
m = 2 * 3 * 4
m -= n
o = m % 3 + (n * n + 5.0) / m
puts "The value of m is: " + m.to_s + "<br>"
puts "The value of n is: " + n.to_s + "<br>"
puts "The value of o is: " + o.to_s + "<br>"
puts "</body></html>"