This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/Practica3/task1_rpo254.py

7 lines
109 B
Python
Raw Normal View History

2025-09-18 19:22:01 +05:00
a = int(input()) #start
b = int(input()) #end
for i in range(a, b + 1):
if i % 7 == 0:
print(i)