import time


def countdown(n):
    start = time.process_time()
    while n > 0:
        n -= 1
    print(time.process_time() - start)


countdown(100)