l=['a', 'b', 'c', 'd', 'e', 'f', 'g']
for i in l:
	print(i, len(l))
	l.pop()
	
	