from threading import Thread
from time import sleep
def custom_timer():
global count
while count>0:
sleep(20)
count -= 1
print('Счетчик закончился!')
def show_count():
print(count)
count = 10
th1 = Thread(target=custom_timer)
th1.start()
#Цикл основного потока
while True:
ans = input()
if ans == 'show':
show_count()