Monday, 11 January 2016

16. While

count = 0
while (count < 9):
   print ('I repeat this'), count
   count = count + 1

print ('"Good bye!')