Ответ:
s = 0
c = 0
while True:
a = int(input())
if a == 0:
break
if a > 0:
s += a
if a % 11 == 0:
c += 1
print('symma:', s)
print('delyatsa na 11', c)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
s = 0
c = 0
while True:
a = int(input())
if a == 0:
break
if a > 0:
s += a
if a % 11 == 0:
c += 1
print('symma:', s)
print('delyatsa na 11', c)