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