#!/usr/bin/python

def index():
	return """

	"""
def hint():
	return """
		"""
def validate(req,passw):
	if passw=="iac":
		return "success"
	else:
		return "failure"
	
