#!/usr/bin/python
stuff = [ 'Toothbrush', 'Pengiun', 'Bottle cap' ]

for object in stuff:
	print object

