Ответ:
s=[j for j in range(1,101)]
q=[]
for i in s:
bb=0
if i%2==0 and i>50:
for t in list(str(i)):
bb+=int(t)
q.append(bb)
for i in q:
print(i)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
s=[j for j in range(1,101)]
q=[]
for i in s:
bb=0
if i%2==0 and i>50:
for t in list(str(i)):
bb+=int(t)
q.append(bb)
for i in q:
print(i)