#==============================================
# Set up the lists of food for the three courses
#==============================================
starters = ["Soup",
            "Salad",
            "Mushrooms",
            "Whitebait",
            "Bruschetta",
            "Avocado",
            "Prawns",
            "Olives",
            "Bread",
            "Doughballs"]

mains = ["Chicken",
         "Steak",
         "Pizza",
         "Risotto",
         "Pasta",
         "Salad",
         "Pie",
         "Casserole",
         "Pork",
         "Lasagne" ]

puddings = ["Fruit",
            "Ice Cream",
            "Sorbet",
            "Crumble",
            "Cheese",
            "Rice Pudding",
            "Tiramisu",
            "Trifle",
            "Cheesecake",
            "Apple Pie" ]

def GetRandomMeal(s,m,p):
    return "cold gruel"

def GetYorN():
    return "Y"

def GetName():
    return "bob"

# get name

# start a counter

#loop 8 times

    # get meal
    # show the meal
    # get response
    # add to total

# open a file
# add the name and total




















