#!/usr/bin/env python3
import time

counter = 0

while counter < 5:
    time.sleep(1)
    counter += 1

    print ('Script has been looping for', counter, 'seconds...')

    
