def max_of_two(f, g, x):
	#your code here
	return ____

def max_of_funcs(f, g):
	#your code here
	return ____

is_even = _____

def conditional_print(test):
	#your code here
	return ____

print_evens = ____
