This commit is contained in:
2025-12-11 18:06:09 +05:00
parent bfa7413f9c
commit e98dd2f107
35 changed files with 0 additions and 0 deletions

8
operators_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()