import time
TheNumber = 25 #this will be a 25 second cooldown
while TheNumber > 0:
print(TheNumber) #i am printing out the value
TheNumber -= 1
time.sleep(1) #This is used to pause for q second
print("Hooray, What a wonderful day!") #My Message