Create a function that takes an integer and returns true if it's divisible by 100, otherwise return false.
true
false
Divisible(1) ➞ false Divisible(1000) ➞ true Divisible(100) ➞ true
return