Determine whether a pair of integers forms an amicable pair using proper divisors.
Constraints
Example
>>> is_amicable(220, 284) True >>> is_amicable(1184, 1210) True >>> is_amicable(6, 6) False >>> is_amicable(100, 200) False
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints