import re
l=['Milk (regular) (1 gallon)', 'Loaf of Fresh White Bread (1 lb)', 'Rice (white) (1 lb)', 'Eggs (regular) (12)', 'Local Cheese (1 lb)']
for s in l:
	m = re.search(r'^[a-z]+(?:\s+[a-z]+)*', s, re.I)
	if m:
		print(m.group())