import time
beers = 99
while beers > 0:
    time.sleep(0.1)
    print beers, "bottles of beer on the wall"
    print beers, "bottles of beer"
    print "Take one down, pass it around"
    beers -= 1
    print beers, "bottles of beer on the wall"
