import sys

my_list = list(range(5, 51, 5))
for i in my_list:
    print(i)