def hello(x):
	if x == 0:
		return
	else:
		hello(x-1)

hello(3)