up
This commit is contained in:
12
multiple.py
Normal file
12
multiple.py
Normal 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")
|
||||
|
||||
Reference in New Issue
Block a user