summaryrefslogtreecommitdiff
path: root/progs/a361.py
blob: e15b5dfee4aa483e0d6b5e04b32cd3e65da61b3e (plain)
1
2
3
4
5
def sum_Natural(n): 
    sum = (n * (n + 1)) 
    return int(sum) 
def sum_Even(l,r): 
    return (sum_Natural(int(r / 2)) - sum_Natural(int((l - 1) / 2)))