#!/usr/bin/python
print 'Content-type: text/html\n\n';
print "<div style='font-size:1.4em;color:DarkGreen;'>"
#numerical expressions
n = 2 + 4 + 6 + 8
n /= 5
m = 2 * 3 * 4
m -= n
o = m % 3 + (n * n + 5.0) / m
print 'The value of m is: %s <br>' % m
print 'The value of n is: %s <br>' % n
print 'The value of o is: %s <br>' % o
print "</div>"