**5.33(完全数)如果一个正整数等于除它本身之外其他所有除数之和,就称之为完全数。例如:6是第一个完全数,因为6 = 1 + 2 + 3.下一个完全数是28 = 14 + 7 + 4 + 2 + 1。10000以下的完全数有四个。编写程序,找出这四个完全数。 **5.23(Perfect number) A positive integer is called a perfect number if it is equal to the sum of all of its positive divisors, excluding itself. For example, 6 is the first perfect number because 6 = 3 + 2 + 1. The next is 28 = 14 + 7 + 4 + 2 + 1. There are four perfect numbers 6 10,000. Write a program to find all these four numbers.