# Kelvin Ly
# 10/07/12
# Part D: Determines whether you can go on a field trip.

# Ask the user a question and get the answer
ans = input("Did you bring back your signed permission slip(yes/no)?\n")

if ans == "yes":
	
	#Ask them another question to make sure they know their history!
	ans2 = input("What color was the White House?\n")

	if ans2 == "white" or ans2 == "White":

		# Wasn't it unpainted a long time ago or something?
		print("You will get to go to the art museum!")

	else:
		print("You will get to go to the history museum!")

else:
	print("Sorry, you aren't allowed to go on the field trip.")
