#!/Library/Frameworks/Python.framework/Versions/Current/bin/python
# L-18 MCS 275 Mon 25 Feb 2008 : give_number.py
import cgi
form = cgi.FieldStorage()
print "Content-Type: text/plain\n"
try:
   n = form['number'].value
   print "your number is " + n
except KeyError:
   print "please enter a number"
