Ответ:690
Объяснение:
t = 5 ** 2022 - 2 * 5 ** 1010 + 25**850 + 2500
c = 0
while t > 0:
if t % 5 == 4:
c += 1
t //= 5
print(c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:690
Объяснение:
t = 5 ** 2022 - 2 * 5 ** 1010 + 25**850 + 2500
c = 0
while t > 0:
if t % 5 == 4:
c += 1
t //= 5
print(c)