summaryrefslogtreecommitdiff
path: root/progs/a196.py
blob: 8787a9c1fcd96010d12a05b0935624f88a7dee46 (plain)
1
2
3
4
5
6
def sum_Odd(n): 
    terms = (n + 1)//2
    sum1 = terms * terms 
    return sum1  
def sum_in_Range(l,r): 
    return sum_Odd(r) - sum_Odd(l - 1)