Files
operators/task_8.py
2025-12-11 18:01:56 +05:00

8 lines
118 B
Python

n = int(input("Введите число n: "))
num = 0
while num <= n:
print(num, end=" ")
num += 5
print()