
# your code goes here
from threading import Thread
import time

class TimeRun(Thread):
	def __init__(self, seconds):
		super().__init__()
		self.seconds = seconds

	def run(self):
		time.sleep(self.seconds)
		print(self.seconds, 'seconds passed')

def time_thread():
	seconds = 5
	timeThread = TimeRun(seconds)
	timeThread.start()

print('Begin')
while True:
	time_thread()