Ответ:
a = 1
s = 0
while a <= 1000:
if a % 3 == 0:
s += a
a += 1
print(s)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = 1
s = 0
while a <= 1000:
if a % 3 == 0:
s += a
a += 1
print(s)