Ответ:50153
Объяснение:
s = 0
c = 0
for i in range(10000, 1321231231231):
delit = []
for j in range(2, i//2+1):
if i % j == 0:
delit.append(j)
if len(delit) == 0:
c += 1
s += i
if c == 5:
break
print(s)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:50153
Объяснение:
s = 0
c = 0
for i in range(10000, 1321231231231):
delit = []
for j in range(2, i//2+1):
if i % j == 0:
delit.append(j)
if len(delit) == 0:
c += 1
s += i
if c == 5:
break
print(s)