summaryrefslogtreecommitdiff
path: root/progs/a872.py
blob: ee96b9c7d0f212433ad8d7637e669cd21e3b9b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
def average_Odd(n) : 
    if (n%2==0) : 
        return ("Invalid Input") 
        return -1 
    sm =0
    count =0
    while (n>=1) : 
        count=count+1
        sm = sm + n 
        n = n-2
    return sm//count