#ZADANIE

liczba = int(input("Podaj Liczbe Do Odliczania"))
while liczba > 0:
    print(f"Odliczanie: {liczba}")
    liczba -= 1

 
