#!/usr/bin/python
from BeautifulSoup import BeautifulStoneSoup
import urllib2
print "Content-type: text/html\n\n"
#control variables start
feedURL = "http://manningtreebenefice.blogspot.com/feeds/posts/default?alt=rss"
numofposts = 5
#control variables end
feed = urllib2.urlopen(feedURL)
convertedfeed = feed.read().replace('
"
post = item.description.string.replace('<','<')
post = post.replace('>','>')
post = post.replace('\n','
')
print post.encode('utf-8')