my_list = [i for i in range(0, 51, 5)]
my_list.pop(0)
for i in my_list:
	print(i)