import itertools

vars = ['发现','自然','探索','求知', '希望']


for subset in itertools.permutations(vars, len(vars)):
	print(' '.join(subset))