a = []
s = 0
for i in range(100,1000):
if i % 3 == 0 and i % 4 != 0 and i % 9 !=0:
s += 1
new_el = i
a.append(i)
print(a)
print(s)
a = []
s = 0
for i in range(100,1000):
if i % 3 == 0 and i % 4 != 0 and i % 9 !=0:
s += 1
new_el = i
a.append(i)
print(a)
print(s)