for i in range(100): if __________________________: print(i)
i % 7 == 0 and i % 3 != 0
not(i % 7) and i % 3 != 0
i % 7 and i % 3
i % 7 == 0 and not(i % 3 == 0)