The natural numbers include the positive integers. In other words, natural numbers are a set of all the whole numbers excluding 0
For Example: 1, 2, 3, 4, 5, 6, ..
Start Algorithm
count = 1
sum = 0;
while count <= 10
sum = sum + count
count = count + 1
end of while
Display ("Output : "+ sum)
stop algorithm
Output: 1, 2, 3, 4, 5, 6, 7, 8 ,9, 10