python/multiple.py
2022-12-28 09:00:47 +01:00

13 lines
156 B
Python

from math import *
nbPersonnes = int(input())
nbFruits = int(input())
reste = (nbFruits % nbPersonnes) == 0
if reste:
print("oui")
else:
print("non")