ответ: python
import random
x = [0] * 42
s = 0
c = 0
for i in range(42):
x[i] = random.randint(4, 40)
if x[i] > 10: s += x[i]
if x[i] % 2 == 0: c += 1
print('sum:', s)
print('kolvo:', c)
ответ: python
import random
x = [0] * 42
s = 0
c = 0
for i in range(42):
x[i] = random.randint(4, 40)
if x[i] > 10: s += x[i]
if x[i] % 2 == 0: c += 1
print('sum:', s)
print('kolvo:', c)