Answer:
Explanation:
Firstly, let's create a function named sumNumbers() that take one input parameter, num (Line 1).
Declare a variable, sum, to hold the value of total number between 0 and the input number (Line 2). Initialize it with 0 value.
Create a for-loop to traverse through the numbers started from 0 till input number (Line 3). In the loop, add the each number to sum variable (Line 4).
At last, return the sum as output (Line 6).