Make a flowchart for following program fragments, there is no need to show start and stop. LET sum = 0 LEt count = 0 LET item = 0 DO UNTIL item = 9999 INPUT item IF item < 9999 THEN LET sum = sum + item LET count = count + 1 END IF LOOP LET average = sum / count OUTPUT average