des0004 des0004 22-07-2022 Mathematics contestada Select the output of this algorithmSTARTSET n = 4SET d = 1SET sum = 0WHILE d < = nIF n/d is integer THENsum = sum + dELSEsum = sum + 0END IFd = d+1END WHILEOUTPUT sumEND