Files
pythonProject/f.py
Victor Alexandrovich Tsyrenschikov 1875a07fa8 Esphome
2026-02-13 21:39:59 +05:00

7 lines
206 B
Python

sum_i=0
for i in range(int(input('Введите число последовательности: '))):
a=int(input('Введите числа'))
if a%5==0 and a>sum_i:
sum_i=a
print(sum_i)