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

12
multiple.py Normal file
View File

@@ -0,0 +1,12 @@
from math import *
nbPersonnes = int(input())
nbFruits = int(input())
reste = (nbFruits % nbPersonnes) == 0
if reste:
print("oui")
else:
print("non")