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