8 lines
205 B
Python
8 lines
205 B
Python
def classify(number):
|
|
""" A perfect number equals the sum of its positive divisors.
|
|
|
|
:param number: int a positive integer
|
|
:return: str the classification of the input integer
|
|
"""
|
|
pass
|