"""Our first python program"""
# to print the message Hello, World:
print "Hello, World"
# You can also use single quotes to surround a string:
print 'Hello, World'
# Some elementary arithmetic:
print 1 + 1
# a print statement can also be written this way:
print (1 + 1)
