day1/exercise/aliquot.py
author nishanth
Wed, 03 Mar 2010 14:14:45 +0530
changeset 375 30124fd5eb7e
parent 354 5dc6c3673f9d
child 380 669b72283b55
permissions -rw-r--r--
added the missing question mark


def aliquot(n):
    sum = 1
    i = 2

    while i * i < n: 
        if n % i == 0:
            sum += i + (n / i)
        i += 1
    if n % i == 0: sum += i
    return sum

n = int(raw_input('Enter a number? '))
print aliquot(n)