
def main():
    F = open( "PrintMe.py", "r" )
    for line in F:
        line = line.strip("\n")
        print line


main()
