for i in range(1,101):
    if i%10==0:
        print(i, " divisible by 10!")
    else:
        print(i)
