def funkcija(x): if x == 1: print(x) else: funkcija(x - 1) print(x) funkcija(4)