# print a Camus quote

def main():
    print "Camus said:"  # print text and then go to next line

    # The escape sequence \n does a carriage return.
    # If we want to include double quotes in the text we are displaying, we can
    # enclose the text in single quotes.
    print ' "Some people talk in their sleep. \nLecturers talk while other people sleep." '
   
main()