piscine 00

This commit is contained in:
David Gailleton
2025-12-18 15:39:15 +01:00
parent 029903f8dd
commit 01854a4fb7
9 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
def ft_harvest_total():
print("Day 1 harvest:", end=" ")
d1 = int(input())
print("Day 2 harvest:", end=" ")
d2 = int(input())
print("Day 3 harvest:", end=" ")
d3 = int(input())
print("Total harvest:", d1 + d2 + d3)