CJCoding With Joseph

Function: Sum from 1 to N

Complete the function sumTo so it returns the sum of all integers from 1 up to n (inclusive). The main function reads n and prints the sum.

Example: input 10 prints 55.

Expected Output:

55
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
10\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.