summaryrefslogtreecommitdiff
path: root/py00/ex3/ft_harvest_total.py
blob: d01db24abfd1c2b7b0d86e1483f85c23de96a796 (plain)
1
2
3
4
5
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)