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/task3_rpo254.py

10 lines
227 B
Python
Raw Normal View History

2025-09-22 13:46:31 +05:00
mini = int(input("нач :: "))
maxi = int(input("кон :: "))
numb = int(input("чис :: "))
while mini < maxi:
if mini == numb:
print(f" !{mini} !", end=' ')
else:
print(mini, end=' ')
mini += 1