Construct a pseudocode to compute, to display the sum of ten (10) integer numbers and determine the biggest and smallest number.Programming

sum=0

read num
max = min = num
for i=2..10
read num
sum += num
if num>max then max=num
if num<min then min=num
next i
print sum