def f1():
	first = 10
	def f2():
		second = first + 10
		return second
	return f2()
print f1()	