#Write a program that first reads one positive integer that will #indicate #an amount of input integer number that will come after that. The #program #will read the series of the integer numbers (amount of integer numbers #will be equal to the first input number) and will find the amount of #the #even numbers that are divisible by 4, their sum and their average. size_input = int(input("enter number of ints in your input ")) i = 0 sum = 0 counter = 0 while(i < size_input): num=int(input("enter int ")) if(num%2==0 and num%4==0): sum=sum+num counter=counter+1 i=i+1 if(counter>0): print("sum of evens div by 4", sum) print("average of evens div by 4", sum/counter) else: print("no evens divisible by 4")