#Задание 2

a = [100,2,1,1,1,1,4,5,5,6,7,8,1,0,-5]
for num in a:
if num % 2 == 0:
print(num)
Автор: Аноним