#Write a program that first reads one positive integer that will indicate the size of #the input. The program then reads input numbers and finds the number of inputs that are #divisible by 4, their sum and their average. size=int(input("enter size ")) i=1 sum=0 count=0 while(i<=size): num=int(input("enter num ")) if(num%4==0): sum=sum+num count=count+1 i=i+1 if(count>0): print("sum",sum) print("average",sum/count) print("count",count) else: print("no numbers divisible by 4")