“Sum of First n Natural Numbers” is a basic programming exercise problem for beginners. Here, we are given a number ‘n’ and our task is to compute the sum of first ‘n’ natural numbers. Natural Numbers: 1,2,3,……… Example (Sum of first n Natural Numbers): INPUT: N = 5 OUTPUT: 15...