def function():
	print("AAAAA")
 
 
def Test():
	function()
if __name__ == "__main__": Test()