# Hello.py - A simple program to print "Hello, world"

def main() :
    print "Hello, world"

main()
