#!/usr/bin/python

print 'Content-type: text/html'
print ''

file = open('count', 'r')
data = file.readlines()
print data
file.close()
c = int(data[0].strip())
c += 1

file = open('count', 'w')
file.write('%d' % c)
file.close()

print 'The new count is ', c
