def lazy_sum(*args):
	def sum():
		ax=0
		for n in args:
			ax=ax+n
		return ax
	return sum
	
f=lazy_sum(1,3,5)
print(f())
	
# your code goes here
# your code goes here