#!/Library/Frameworks/Python.framework/Versions/Current/bin/python
# L-19 MCS 275 Wed 27 Feb 2008 : give_words.py
import cgi
form = cgi.FieldStorage()
print "Content-Type: text/plain\n"
try:
   s = form['sometext'].value
   print "your paragraph is \n" + s
except KeyError:
   print "please enter some words"
