This commit is contained in:
2025-12-11 18:01:56 +05:00
commit bfa7413f9c
38 changed files with 651 additions and 0 deletions

8
task_19.py Normal file
View File

@@ -0,0 +1,8 @@
a = int(input("Введите число a: "))
b = int(input("Введите число b: "))
c = int(input("Введите число c: "))
for num in range(a, b + 1):
if num % c == 0:
print(num, end=" ")
print()