Check Divisibility
EasyMATHConditionalsIntegers
### Description
Write a function that takes two integers and returns "true" if the first number is divisible by the second, otherwise return "false".
### Constraints
-10^6 <= a, b <= 10^6
b ≠ 0
### Example
Input: 10,5
Output: true
Examples
Example 1
Input: 10,5
Output: true
Example 2
Input: -12,4
Output: true