Given 5 integer numbers, please print the sum of those numbers as the result
a list or numpy array "nums" containing 5 int number
each number < 300
an integer
1 2 3 4 5 2 8 10 13 54
15 87
Can use a simple "loop" to sum each element or use "sum"function from numpy(you need to "convert" the python list to numpy array first)