foo = 1

def func(val):
	return val
	
foo = func(2)

print(foo)