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