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