(Released ~8:30pm) A perfect number is a number where summing up all its proper factors equals the number itself. For example, the proper factors of 6 are 1, 2, and 3. 1 + 2 + 3 = 6, so 6 is a perfect number! The proper factors of 28 are 1, 2, 4, 7, and 14. 1 + 2 + 4 + 7 + 14 = 28, so 28 is also a perfect number! This project finds perfect numbers by simply checking through every number below a number, checking if its a factor, and after finding all the (proper) factors, seeing if they add up to the original number! It's extremely slow and inefficient, and there are probably better ways to do it, but this works. Anyways thanks for reading and using this project, and have a good day!