#Write a function proper_sum_div that has one #parameter #pos integer and the function returns sum of #PROPER divisors #USE LOOP FOR #Write a function abundant that has one parameter #positive integer N and prints all ODD ABUNDANT #numbers between 1 #and N and returns their amount. If the number N is ODD and ABUNDANT, #the #program will #print N as well. USE LOOP FOR #HINT: for i in range(1, N+1): #Example: range(5): 0 1 2 3 4, range(1, 6) 1 2 3 #4 5 #Wrire a program that tests your functions import random MAX = 20000 def proper_sum_div(num): total=0 for i in range(1, num): if(num%i==0): total=total+i return total def abundant(n): count=0 for i in range(1,n+1,2): sum_div=proper_sum_div(i) if(i