#write a program (main) that reads integers till user enter STOP #program finds the sum and average of positive odd numbers def main(): repeat=input("enter any string, STOP will stop the program execution ") sum=0 count=0 while(repeat!="STOP"): num=int(input("enter number ")) if(num%2!=0 and num>0): sum=sum+num count=count+1 repeat=input("enter any string, STOP will stop the program execution ") if(count>0): print(sum, sum/count) else: print("no positive odd numbers") main()