summaryrefslogtreecommitdiff
path: root/progs/a489.py
blob: ac17fc0464290c6e142844cbf626b56a85eb8a84 (plain)
1
2
3
4
5
6
def sum(a,b): 
    sum = 0
    for i in range (1,min(a,b)): 
        if (a % i == 0 and b % i == 0): 
            sum += i 
    return sum