This commit is contained in:
2022-12-28 09:00:47 +01:00
commit 9d755dc551
19 changed files with 201 additions and 0 deletions

10
malades.py Normal file
View File

@@ -0,0 +1,10 @@
print("Test :")
nbHab = int(input())
jour = 1
persM = 1
while nbHab > persM:
persM = persM + 2
jour = jour + 1
print(jour, persM)