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