import string

file = ('A quick brown fox jumps over the lazy dog','A slow yellow fox crawls under the proactive dog')
for phrase in file:
	result = ''
	for x in list(string.lowercase[:26]):
		if file[0].find(x) >= 0:
			pass
		else:
			result = result + x
	print result