• Tutorials
  • DSA
  • Data Science
  • Web Tech
  • Courses
June 07, 2022 |1.0K Views

Amicable Numbers

Description
Discussion

Amicable numbers are two different numbers so related that the sum of the proper divisors of each is equal to the other number. (A proper divisor of a number is a positive factor of that number other than the number itself. 
Examples: 
 

Input : x = 220, y = 284
Output : Yes 
Proper divisors of 220 are 1, 2, 4, 5,
10, 11, 20, 22, 44, 55 and 110. Sum of 
these is 284. Proper divisors of 284 
are 1, 2, 4, 71 and 142 with sum 220.

Input : 1 2
Output :No

Amicable Numbers: https://www.geeksforgeeks.org/check-amicable-pair/