def f(huita=[]):
	if huita:
		print("You're not my first Sychev")
		return
	huita.append('huita')

f()
f()