Write the pseudocode to get the input of 10 integers from the user and add them up and output the total.
Question) Compute the output of following pseudocode. Assume that output and count are integer variables
output = 1
FOR count = 1 to 5
output = output * count
ENDFOR
PRINT output