from collections import OrderedDict

d = OrderedDict()
for i in range(5,10):
    d[i] = "something" + `i`
    
for x in d.values():
	print x