# Try to work out what this will print # then run it to see if you are right t = 0 for n in range(1, 6): t = t + n # print(n, t) if (t % n == 0): print(t, "is special")