#!/usr/bin/env python3
#=====================================================================================
# Python 'while' loop
#=====================================================================================
print("Content-Type: text/html \n")     #http header with newline char (required for web)

print('<pre>')                          #to produce better display on the web 

print('This is a while loop')                          

counter = 1                             #start at 1
while counter <= 100:                   #as long as country is less than or equal to 100
    print(counter)
    counter += 1                        #VERY IMPORTANT

print('Done!!!')