
# this is the first comment


#! python

# integer variables
SPAM = 1       


#! python

print "Hello, Python"


#! python
# string variable

STRING = "# This is not a comment."

print STRING



