Write a function that checks if one integer divides another exactly.
Constraints
Example
```python >>> is_divisible_by(10, 2) True >>> is_divisible_by(10, 3) False >>> is_divisible_by(10, 0) False >>> is_divisible_by(-10, 5) True ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints