CJCoding With Joseph

Read N Values and Sum

Read an integer N, then read N more integers into an array. Print the sum of all N values in this exact format:

Sum: [total]

Expected Output:

Sum: 20
Topics:
Arrays
๐Ÿ“ฅ Auto-Input:
4\n3 7 2 8\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.