test
This commit is contained in:
8
task_19.py
Normal file
8
task_19.py
Normal 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()
|
||||
Reference in New Issue
Block a user