1 2 3 4 5
def ft_count_harvest_iterative(): count = int(input("Days until harvest: ")) for i in range(1, count + 1, + 1): print("Days ", i) print("Harvest time!")