Start Algorithm count = 1 sum = 0; while count <= 10 sum = sum + count count = count + 2 end of while Display ("Output : "+ sum) stop algorithm