Question: 1A perfect number is an integer that is the sum of its positive properdivisors (all divisors except itself). For example, 6 is a perfect number.The divisors of 6 except itself are 1,2 and 3. The sum of the properdivisors of 6 is 6. Thus 6 is a perfect number. You have to take integersas input and continue taking input until the word “STOP” is given as input.After taking the inputs you have to classify the integers as Perfect andImperfect and store it in a dictionary(Please see the output for betterunderstanding).[Note: You CANNOT use any built in functions EXCEPT input(),range(),print()]Sample Input :61082528100496530STOPSample Output:(No need to follow the output format. Just print theresultant dictionary.){Perfect: [6,28,496],Imperfect: [10,8,25,100,530]}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here