Odpowiedź :
Witaj :)
Kod:
for x in range(10, 40):
if (x % 5 == 0) or (x % 2 == 0) or (x % 3 == 0):
continue
print(x)
def petla(a, b, c, d, e):
for x in range(a, b):
if (x % c == 0) or (x % d == 0) or (x % e == 0):
continue
print(x)
petla(180, 200, 5, 2, 3)