a = list(range(1,51))
for i in a:
    if i%5 ==0:
        print(i)
    else:
        continue