import numpy as np
arr = [5,2,6,21,63]
print("Our array: ", arr) 
print("Sum of array : ", np.sum(arr))