""" Program: Commenting Demo Author: Craig Description: Just a simple program that shows how commenting can be used """ # ask the user for their name username = input("What is your name? ") # ask the user for their favorite food favoritefood = input("What is your favorite food? ") # print out a confirmation to the user print ("Welcome to my program", username, " -- my favorite food is also", favoritefood)