subtask.py 81 B

1234567
  1. import time
  2. t = 120
  3. while t > 0:
  4. print(t)
  5. time.sleep(1)
  6. t -= 1