favorin_languages = {
'jen': 'python',
'sarah': 'c',
'edward': 'ruby',
'phil': 'python',
}
peoples = ['jen', 'sarah', 'edward', 'phil', 'antoni', 'igor', 'bob']
for people in peoples:
	if people in favorin_languages:
		print (people + ' control.')
	else:
		print (people + ' control 2.')