from mad_lib import mad_lib
while True:
md = mad_lib('Eating %whole_number% %plural_noun% a day keeps the doctor away.')
if 'quit' in md.text:
break
else:
print(md.text)