# welcome to softhunt.net import numpy as np A = np.array([[4, 23, 65], [54, 32, 22]]) print(A) b = 5 print(b) C = A + b print(C)