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

14 lines
267 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 % 3 == 0:
print("Fizz")
if i % 5 == 0:
print("Buzz")
if i % 3 == 0 and i % 5 == 0:
print("Fizz Buzz")
if i % 3 != 0 and i % 5 != 0:
print(i)