day1/exercise/aliquot.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 08 Oct 2009 20:23:11 +0530
changeset 73 9a93e8901e99
parent 64 333092b68926
child 94 8c92864c184b
permissions -rw-r--r--
Merged Mainline and Puneeth branches.

def aliquot(n):
    sum = 0
    for i in range(1, (n/2)+1):
        if n % i == 0:
            sum += i
    return sum

print aliquot(14)