В чем ошибка моего кода?
a = int(input())
b = int(input())
c = int(input())
d = int(input())
start = (a-c=d-1)//d*d+c
for i in range(start,b+1, d):
print(i)
Ответы (1 шт):
Автор решения: Victor VosMottor
→ Ссылка
a = int(input())
b = int(input())
c = int(input())
d = int(input())
start = (a - c == d - 1) // d ** 2 + c
for i in range(start, b + 1, d):
print(i)