Check if a number is divisible by both given divisors.
Constraints
Example
>>> is_multiple_of_both(12, 3, 4) True >>> is_multiple_of_both(15, 3, 5) True >>> is_multiple_of_both(10, 3, 5) False >>> is_multiple_of_both(0, 7, 11) True
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints