#in this file we will write 2 functions #1. sumCount thta has one parameter, size - the number of input integers #Function returns the amount and sum of ODD numbers among inputs #2. average - has two parameteres, size and sum - amount of ODDs and sum #of ODDs. Function returns average of evens def sumCount(size): countEven = 0 sumEven = 0 print("enter ", size, "ints ") for i in range(size): n = int(input(" ")) if(n%2 != 0): countEven+=1 sumEven+=n return countEven, sumEven def average(size, sum): #this function will be called ONLY if size (number of ODDs) is positive! return (float)(sum)/size