def ft_harvest_total(): one = int(input("Day 1 harvest: ")) two = int(input("Day 2 harvest: ")) three = int(input("Day 3 harvest: ")) print("Total harvest :", one + two + three)