est 2 un nombre pair
def isEven(x):
return x%2 == 0
print(isEven(2))
Expensive Elephant
def isEven(x):
return x%2 == 0
print(isEven(2))