#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 generates integer numbers in range (-20, 20) (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. import random def main(): size=int(input("how many numbers to generate? ")) counter=0 total=0 while(counter0): print("there are", total,"numbers divisible by 4 and evens") else: print("no numbers div by 4 and even") main()